X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=initscript%2Ffedora%2Favahi-dnsconfd.in;h=de49d7f8a70e7f50489e1cbed347159fe06359a3;hb=b44721f225f2a2390b8edc2fc45a491d7596beeb;hp=a86bea8114e4968b4ee617e48e5494dbe98d6281;hpb=7c966a2bfbadce6e924fc6dd2053e614b0449ea2;p=catta diff --git a/initscript/fedora/avahi-dnsconfd.in b/initscript/fedora/avahi-dnsconfd.in index a86bea8..de49d7f 100644 --- a/initscript/fedora/avahi-dnsconfd.in +++ b/initscript/fedora/avahi-dnsconfd.in @@ -1,14 +1,22 @@ #! /bin/sh # -# avahi-daemon: Starts the Avahi dns configuration daemon +# avahi-dnsconfd: Starts the Avahi dns configuration daemon # -# chkconfig: - 97 02 +# chkconfig: - 96 02 # description: avahi-dnsconfd connects to a running avahi-daemon and runs the script \ # /etc/avahi/dnsconf.action for each unicast DNS server that is announced \ # on the local LAN. This is useful for configuring unicast DNS servers in \ # a DHCP-like fashion with mDNS. # processname: avahi-dnsconfd -# config: +# config: + +AVAHI_BIN=@sbindir@/avahi-dnsconfd + +if [ "$1" = 'status' ]; then + test -x $AVAHI_BIN || exit 4 +else + test -x $AVAHI_BIN || exit 5 +fi OTHER_AVAHI_OPTS="" @@ -16,15 +24,10 @@ OTHER_AVAHI_OPTS="" . /etc/init.d/functions . /etc/sysconfig/network -AVAHI_BIN=@sbindir@/avahi-dnsconfd -if [ $1 == 'status' ]; then - test -x $AVAHI_BIN || exit 4 -else - test -x $AVAHI_BIN || exit 5 -fi - LOCKFILE=/var/lock/subsys/avahi-dnsconfd +base=${0##*/} + start() { # Check that networking is configured. [ ${NETWORKING} = "no" ] && exit 1 @@ -61,7 +64,6 @@ reload() { return $RETVAL } - restart() { stop start @@ -86,7 +88,7 @@ case "$1" in restart ;; reload) - reload + reload ;; condrestart) if [ -f $LOCKFILE ]; then @@ -100,4 +102,3 @@ case "$1" in esac exit $RETVAL -