openais.init 433 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. #PKG openais
  3. #INIT 80
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${corosync:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. mount -t tmpfs -o size=4M tmpfs /dev/shm
  13. [ -d /var/lib/corosync ] || mkdir -p /var/lib/corosync
  14. /usr/sbin/aisexec
  15. ;;
  16. stop)
  17. kill $(pgrep -f corosync)
  18. umount /dev/shm
  19. ;;
  20. restart)
  21. sh $0 stop
  22. sh $0 start
  23. ;;
  24. *)
  25. echo "usage: $0 {start | stop | restart}"
  26. ;;
  27. esac
  28. exit $?