dbus.init 394 B

12345678910111213141516171819202122232425262728
  1. #!/bin/sh
  2. #PKG dbus
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${dbus:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. mkdir -p /var/run/dbus
  13. /usr/bin/dbus-daemon --config-file=/etc/dbus-1/system.conf
  14. ;;
  15. stop)
  16. kill $(pgrep -f /usr/bin/dbus-daemon)
  17. ;;
  18. restart)
  19. sh $0 stop
  20. sh $0 start
  21. ;;
  22. *)
  23. echo "Usage: $0 {start | stop | restart}"
  24. exit 1
  25. ;;
  26. esac
  27. exit $?