mirror of
				https://github.com/retspen/webvirtcloud
				synced 2025-07-31 12:41:08 +00:00 
			
		
		
		
	Fixed some bugs
This commit is contained in:
		
							parent
							
								
									fafce78e68
								
							
						
					
					
						commit
						871e04fb03
					
				
					 4 changed files with 32 additions and 15 deletions
				
			
		| 
						 | 
				
			
			@ -43,19 +43,19 @@
 | 
			
		|||
                    <h3 class="page-header">{% trans "Edit Password" %}</h3>
 | 
			
		||||
                    <form class="form-horizontal" method="post" action="" role="form">{% csrf_token %}
 | 
			
		||||
                        <div class="form-group">
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "Old password" %}</label>
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "Old" %}</label>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <input type="password" class="form-control" name="oldpasswd" value="">
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group bridge_name_form_group_dhcp">
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "New password" %}</label>
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "New" %}</label>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <input type="password" class="form-control" name="passwd1" value="">
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group bridge_name_form_group_dhcp">
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "Retry password" %}</label>
 | 
			
		||||
                            <label class="col-sm-2 control-label">{% trans "Retry" %}</label>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <input type="password" class="form-control" name="passwd2" value="">
 | 
			
		||||
                            </div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -66,14 +66,15 @@ parser.add_option("-c",
 | 
			
		|||
 | 
			
		||||
(options, args) = parser.parse_args()
 | 
			
		||||
 | 
			
		||||
FORMAT="%(asctime)s - %(name)s - %(levelname)s : %(message)s"
 | 
			
		||||
 | 
			
		||||
FORMAT = "%(asctime)s - %(name)s - %(levelname)s : %(message)s"
 | 
			
		||||
if options.debug:
 | 
			
		||||
    logging.basicConfig(level=logging.DEBUG,format=FORMAT)
 | 
			
		||||
    options.verbose=True
 | 
			
		||||
    logging.basicConfig(level=logging.DEBUG, format=FORMAT)
 | 
			
		||||
    options.verbose = True
 | 
			
		||||
elif options.verbose:
 | 
			
		||||
    logging.basicConfig(level=logging.INFO,format=FORMAT)
 | 
			
		||||
    logging.basicConfig(level=logging.INFO, format=FORMAT)
 | 
			
		||||
else:
 | 
			
		||||
    logging.basicConfig(level=logging.WARNING,format=FORMAT)
 | 
			
		||||
    logging.basicConfig(level=logging.WARNING, format=FORMAT)
 | 
			
		||||
 | 
			
		||||
try:
 | 
			
		||||
    from websockify import WebSocketProxy
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -588,10 +588,21 @@ install_debian() {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
install_debian_post() {
 | 
			
		||||
    if [ -f /etc/default/libvirt-bin ]; then
 | 
			
		||||
        sed -i 's/libvirtd_opts="-d"/libvirtd_opts="-d -l"/g' /etc/default/libvirt-bin
 | 
			
		||||
    if [ $DISTRO_MAJOR_VERSION -ge 8 ]; then
 | 
			
		||||
        LIBVIRTSVC=libvirtd
 | 
			
		||||
    else
 | 
			
		||||
        echoerror "/etc/default/libvirt-bin not found. Exiting..."
 | 
			
		||||
        LIBVIRTSVC=libvirt-bin
 | 
			
		||||
    fi
 | 
			
		||||
    if [ -f /etc/default/$LIBVIRTSVC ]; then
 | 
			
		||||
        if [ "$( grep -c '^libvirtd_opts *=' /etc/default/$LIBVIRTSVC )" -gt 0 ]; then
 | 
			
		||||
            if [ $( grep -c '^libvirtd_opts *=.*-l' /etc/default/$LIBVIRTSVC ) -eq 0 ]; then
 | 
			
		||||
                sed -i 's/^libvirtd_opts="\([^"]*\)"/libvirtd_opts="\1 -l"/g' /etc/default/$LIBVIRTSVC
 | 
			
		||||
            fi
 | 
			
		||||
        else
 | 
			
		||||
            sed -i 's/^#libvirtd_opts=.*$/libvirtd_opts="-l"/g' /etc/default/$LIBVIRTSVC
 | 
			
		||||
        fi
 | 
			
		||||
    else
 | 
			
		||||
        echoerror "/etc/default/$LIBVIRTSVC not found. Exiting..."
 | 
			
		||||
        exit 1
 | 
			
		||||
    fi
 | 
			
		||||
    if [ -f /etc/libvirt/libvirtd.conf ]; then
 | 
			
		||||
| 
						 | 
				
			
			@ -612,9 +623,14 @@ install_debian_post() {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
daemons_running_debian() {
 | 
			
		||||
    if [ -f /etc/init.d/libvirt-bin ]; then
 | 
			
		||||
        /etc/init.d/libvirt-bin stop > /dev/null 2>&1
 | 
			
		||||
        /etc/init.d/libvirt-bin start
 | 
			
		||||
    if [ $DISTRO_MAJOR_VERSION -ge 8 ]; then
 | 
			
		||||
        LIBVIRTSVC=libvirtd
 | 
			
		||||
    else
 | 
			
		||||
        LIBVIRTSVC=libvirt-bin
 | 
			
		||||
    fi
 | 
			
		||||
    if [ -f /etc/init.d/$LIBVIRTSVC ]; then
 | 
			
		||||
        /etc/init.d/$LIBVIRTSVC stop > /dev/null 2>&1
 | 
			
		||||
        /etc/init.d/$LIBVIRTSVC start
 | 
			
		||||
    fi
 | 
			
		||||
    return 0
 | 
			
		||||
} 
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -10,7 +10,7 @@
 | 
			
		|||
            <div class="modal-content">
 | 
			
		||||
                <div class="modal-header">
 | 
			
		||||
                    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | 
			
		||||
                    <h4 class="modal-title">{% trans "Chose computes for new instance" %}</h4>
 | 
			
		||||
                    <h4 class="modal-title">{% trans "Choose a compute for new instance" %}</h4>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="modal-body">
 | 
			
		||||
                    <form class="form-horizontal" role="form">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue