diff options
Diffstat (limited to 'initscript/Gentoo/avahi')
-rw-r--r-- | initscript/Gentoo/avahi | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/initscript/Gentoo/avahi b/initscript/Gentoo/avahi deleted file mode 100644 index a37c965..0000000 --- a/initscript/Gentoo/avahi +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Avahi ZeroConf Daemon init script -# Many thanks to the Avahi developer's and Sebastien Estienne - -DAEMON=/usr/bin/avahi - -depend () { - need 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 $? -} - |