dbusd 706 B

123456789101112131415161718192021
  1. # Dbus daemon.
  2. # Dbusd can use socket activation, which Dinit (sort-of) supports. However,
  3. # this currently requires building Dbus against SystemD. Alternatively, we
  4. # can use the --print-address option for an effective readiness notification.
  5. # For non-socket-activated:
  6. type = process
  7. command = /usr/bin/dbus-daemon --system --nofork --nopidfile --print-address=4
  8. logfile = /var/log/dbus-daemon.log
  9. ready-notification = pipefd:4
  10. smooth-recovery = yes
  11. depends-on: rcboot
  12. # For socket-activation:
  13. #type = process
  14. #command = /usr/bin/dbus-daemon --system --nofork --nopidfile
  15. #socket-listen = /var/run/dbus/system_bus_socket
  16. #logfile = /var/log/dbus-daemon.log
  17. #smooth-recovery = yes
  18. #depends-on: rcboot