summaryrefslogtreecommitdiffstats
path: root/initscript/Gentoo/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/Gentoo/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/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 $?
-}
-