avahi-daemon.initd 463 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/openrc-run
  2. # Copyright 1999-2007 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. extra_started_commands="reload"
  5. depend() {
  6. before netmount nfsmount
  7. use net
  8. need dbus
  9. }
  10. start() {
  11. ebegin "Starting avahi-daemon"
  12. /usr/bin/avahi-daemon -D
  13. eend $?
  14. }
  15. stop() {
  16. ebegin "Stopping avahi-daemon"
  17. /usr/bin/avahi-daemon -k
  18. eend $?
  19. }
  20. reload() {
  21. ebegin "Reloading avahi-daemon"
  22. /usr/bin/avahi-daemon -r
  23. eend $?
  24. }