summaryrefslogtreecommitdiffstats
path: root/initscript/gentoo/avahi-dnsconfd
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-dnsconfd
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-dnsconfd')
-rw-r--r--initscript/gentoo/avahi-dnsconfd31
1 files changed, 0 insertions, 31 deletions
diff --git a/initscript/gentoo/avahi-dnsconfd b/initscript/gentoo/avahi-dnsconfd
deleted file mode 100644
index 85ad78e..0000000
--- a/initscript/gentoo/avahi-dnsconfd
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /bin/sh
-#
-# avahi-dnsconfd avahi dns configuration daemon
-# Daemon for ZeroConf
-#
-# Author: Steev Klimaszewski <steev@steev.net>
-
-DAEMON=/usr/bin/avahi-dnsconfd
-
-depend () {
- need net
- after avahi-daemon
-}
-
-start() {
- ebegin "Starting avahi-dnsconfd"
- $DAEMON -D
- eend $?
-}
-
-stop() {
- ebegin "Stopping avahi-dnsconfd"
- $DAEMON -k || /bin/true
- eend $?
-}
-
-reload() {
- ebegin "Reloading avahi-dnsconfd"
- $DAEMON -r
- eend $?
-}