Explorar el Código

remove verbose mode flags

Waldemar Brodkorb hace 14 años
padre
commit
29bf7d46e8
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      package/libvirt/files/libvirt.init

+ 2 - 1
package/libvirt/files/libvirt.init

@@ -10,13 +10,14 @@ autostart)
 	exec sh $0 start
 	;;
 start)
-	/usr/sbin/libvirtd -dv
+	/usr/sbin/libvirtd -d
 	;;
 stop)
 	kill $(pgrep -f /usr/sbin/libvirtd)
 	;;
 restart)
 	sh $0 stop
+	sleep 2
 	sh $0 start
 	;;
 *)