diff options
author | Sebastien Estienne <sebastien.estienne@gmail.com> | 2005-06-30 11:35:44 +0000 |
---|---|---|
committer | Sebastien Estienne <sebastien.estienne@gmail.com> | 2005-06-30 11:35:44 +0000 |
commit | bff096ce462751845bf0a7790a5f55cd0d9069e7 (patch) | |
tree | 855db39cae0be6e340342290856111642182d4d3 /initscript/Gentoo/avahi.in | |
parent | d1a132e5b28680602a64f5d6f9fcfa4072f75cc4 (diff) |
renamed debian/gentoo initscript to remove .in, not needed anymore
install gentoo initscript in /etc/init.d
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@156 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'initscript/Gentoo/avahi.in')
-rw-r--r-- | initscript/Gentoo/avahi.in | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/initscript/Gentoo/avahi.in b/initscript/Gentoo/avahi.in deleted file mode 100644 index a37c965..0000000 --- a/initscript/Gentoo/avahi.in +++ /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 $? -} - |