summaryrefslogtreecommitdiffstats
path: root/initscript/SUSE/avahi-daemon
diff options
context:
space:
mode:
authorTrent Lloyd <lathiat@bur.st>2005-08-23 08:39:01 +0000
committerTrent Lloyd <lathiat@bur.st>2005-08-23 08:39:01 +0000
commit78c4d691610a48ac2c2f12172ae24c3d096b415e (patch)
tree0b4fe6e65faf814f8214176fac1dd5744a57ade5 /initscript/SUSE/avahi-daemon
parentda5014cb5f3d06271ae79dc28354a03c7392cf0f (diff)
* generate initscript/archlinux/Makefile
* Fix archlinux CFLAG err, fix. * Rename the initscript dirs to all lowercase. git-svn-id: file:///home/lennart/svn/public/avahi/trunk@407 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'initscript/SUSE/avahi-daemon')
-rw-r--r--initscript/SUSE/avahi-daemon47
1 files changed, 0 insertions, 47 deletions
diff --git a/initscript/SUSE/avahi-daemon b/initscript/SUSE/avahi-daemon
deleted file mode 100644
index 59bd0c9..0000000
--- a/initscript/SUSE/avahi-daemon
+++ /dev/null
@@ -1,47 +0,0 @@
-#! /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=/usr/bin/avahi-daemon
-test -x $AVAHI_BIN || exit 5
-
-. /etc/rc.status
-rc_reset
-
-case "$1" in
- start)
- echo -n "Starting Avahi daemon"
- startproc $AVAHI_BIN -D
- rc_status -v
- ;;
- stop)
- echo -n "Shutting down Avahi daemon"
- killproc -TERM $AVAHI_BIN
- rc_status -v
- ;;
- restart)
- $0 stop
- $0 start
- rc_status
- ;;
- force-reload|reload)
- echo -n "Reloading Avahi daemon"
- killproc -HUP $AVAHI_BIN
- rc_status -v
- ;;
- status)
- echo -n "Checking for Avahi daemon: "
- checkproc $AVAHI_BIN
- rc_status -v
- ;;
- *)
- echo "Usage: $0 {start|stop|status|restart|force-reload|reload}"
- exit 1
- ;;
-esac
-