From 09b102d429c483d92d269622e2ce748e69abf5f9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 Sep 2005 21:16:20 +0000 Subject: add suse init scripts git-svn-id: file:///home/lennart/svn/public/avahi/trunk@527 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- initscript/suse/avahi-daemon.in | 47 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 initscript/suse/avahi-daemon.in (limited to 'initscript/suse/avahi-daemon.in') diff --git a/initscript/suse/avahi-daemon.in b/initscript/suse/avahi-daemon.in new file mode 100644 index 0000000..1625464 --- /dev/null +++ b/initscript/suse/avahi-daemon.in @@ -0,0 +1,47 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: avahi +# Required-Start: $network dbus +# Default-Start: 3 5 +# Default-Stop: +# Description: Avahi, a ZeroConf daemon for mDNS and service registration +### END INIT INFO + +AVAHI_BIN=@sbindir@/avahi-daemon +test -x $AVAHI_BIN || exit 5 + +. /etc/rc.status +rc_reset + +case "$1" in + start) + echo -n "Starting Avahi daemon" + /sbin/startproc $AVAHI_BIN -D + rc_status -v + ;; + stop) + echo -n "Shutting down Avahi daemon" + $AVAHI_BIN -k || /bin/true + rc_status -v + ;; + restart) + $0 stop + $0 start + rc_status + ;; + force-reload|reload) + echo -n "Reloading Avahi daemon" + $AVAHI_BIN -r + rc_status -v + ;; + status) + echo -n "Checking for Avahi daemon: " + $AVAHI_BIN -c + rc_status -v + ;; + *) + echo "Usage: $0 {start|stop|status|restart|force-reload|reload}" + exit 1 + ;; +esac + -- cgit