dbus.init 509 B

123456789101112131415161718192021222324252627282930
  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. test x"$dbus" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. mkdir -p /var/run/dbus /var/lib
  14. ln -sf /lib/dbus /var/lib/dbus
  15. /usr/bin/dbus-daemon --config-file=/etc/dbus-1/system.conf
  16. ;;
  17. stop)
  18. kill $(pgrep -f /usr/bin/dbus-daemon)
  19. ;;
  20. restart)
  21. sh $0 stop
  22. sh $0 start
  23. ;;
  24. *)
  25. echo "Usage: $0 {start | stop | restart}"
  26. exit 1
  27. ;;
  28. esac
  29. exit $?