Browse Source

remove verbose mode flags

Waldemar Brodkorb 13 years ago
parent
commit
29bf7d46e8
1 changed files with 2 additions and 1 deletions
  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
 	;;
 *)