summaryrefslogtreecommitdiffstats
path: root/initscript/gentoo/avahi-daemon
diff options
context:
space:
mode:
authorTrent Lloyd <lathiat@bur.st>2005-08-23 11:28:40 +0000
committerTrent Lloyd <lathiat@bur.st>2005-08-23 11:28:40 +0000
commit6580b8389158f1bb43771f118583c48b1e2035e1 (patch)
treeb48812ae3ba88bf6cf5edff3631c5afbc42730e3 /initscript/gentoo/avahi-daemon
parent386c9428d669750dfa4a69005b0cb66f8dcd28ba (diff)
* New gentoo init scripts from Sven Wegener
* Fix creation of /avahi when compiling without python (thanks Sven Wegener for that too) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@413 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'initscript/gentoo/avahi-daemon')
-rw-r--r--initscript/gentoo/avahi-daemon30
1 files changed, 0 insertions, 30 deletions
diff --git a/initscript/gentoo/avahi-daemon b/initscript/gentoo/avahi-daemon
deleted file mode 100644
index 8b3a359..0000000
--- a/initscript/gentoo/avahi-daemon
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/runscript
-# Avahi ZeroConf Daemon init script
-# Many thanks to the Avahi developer's and Sebastien Estienne
-# Author: Steev Klimaszewski <steev@steev.net>
-
-DAEMON=/usr/bin/avahi-daemon
-
-depend () {
- need net
- use dbus
-}
-
-start() {
- ebegin "Starting avahi"
- $DAEMON -D
- eend $?
-}
-
-stop() {
- ebegin "Stopping avahi"
- $DAEMON -k || /bin/true
- eend $?
-}
-
-reload() {
- ebegin "Reloading avahi configuration"
- $DAEMON -r
- eend $?
-}
-