libvirt.init 337 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #PKG libvirt
  3. #INIT 80
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"$libvirtd" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. /usr/sbin/libvirtd -d
  13. ;;
  14. stop)
  15. kill $(pgrep -f /usr/sbin/libvirtd)
  16. ;;
  17. restart)
  18. sh $0 stop
  19. sleep 2
  20. sh $0 start
  21. ;;
  22. *)
  23. echo "usage: $0 {start | stop | restart}"
  24. exit 1
  25. esac
  26. exit $?