]> git.meshlink.io Git - catta/commitdiff
move fedora init script to level 96, closing rhbz #249044
authorLennart Poettering <lennart@poettering.net>
Thu, 6 Sep 2007 16:57:42 +0000 (16:57 +0000)
committerLennart Poettering <lennart@poettering.net>
Thu, 6 Sep 2007 16:57:42 +0000 (16:57 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1534 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

initscript/fedora/avahi-daemon.in
initscript/fedora/avahi-dnsconfd.in

index 46318cfa4ef6e2d665bc3f1ab836b9516a2586ed..f26757752833eb6a6bf14a3e2005e1d7a2126725 100644 (file)
@@ -2,7 +2,7 @@
 #
 # avahi-daemon:       Starts the Avahi Daemon
 #
-# chkconfig: 345 97 02
+# chkconfig: 345 96 02
 # description: This is a daemon which runs on client machines to perform \
 #              Zeroconf service discovery on a network. avahi-daemon must be \
 #              running on systems  that use Avahi for service discovery. \
@@ -16,7 +16,6 @@ OTHER_AVAHI_OPTS=""
 . /etc/init.d/functions
 . /etc/sysconfig/network
 
-
 AVAHI_BIN=@sbindir@/avahi-daemon
 
 if [ $1 == 'status' ]; then
@@ -102,6 +101,7 @@ case "$1" in
   *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart}"
        exit 2
+        ;;
 esac
 
 exit $RETVAL
index a86bea8114e4968b4ee617e48e5494dbe98d6281..4b96e943b567cef7075e348ad3df746100bdbec0 100644 (file)
@@ -1,8 +1,8 @@
 #! /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 \
@@ -17,6 +17,7 @@ OTHER_AVAHI_OPTS=""
 . /etc/sysconfig/network
 
 AVAHI_BIN=@sbindir@/avahi-dnsconfd
+
 if [ $1 == 'status' ]; then
     test -x $AVAHI_BIN || exit 4
 else 
@@ -25,6 +26,8 @@ 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