]> git.meshlink.io Git - catta/commitdiff
fix init scripts when called without any arguments. Closes rhbz 425491
authorLennart Poettering <lennart@poettering.net>
Mon, 17 Dec 2007 12:42:54 +0000 (12:42 +0000)
committerLennart Poettering <lennart@poettering.net>
Mon, 17 Dec 2007 12:42:54 +0000 (12:42 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1594 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

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

index f26757752833eb6a6bf14a3e2005e1d7a2126725..69fac9bad1901bdb05df1df2ab618f099780389e 100644 (file)
@@ -18,7 +18,7 @@ OTHER_AVAHI_OPTS=""
 
 AVAHI_BIN=@sbindir@/avahi-daemon
 
-if [ $1 == 'status' ]; then
+if [ "$1" == 'status' ]; then
     test -x $AVAHI_BIN || exit 4
 else 
     test -x $AVAHI_BIN || exit 5
index 4b96e943b567cef7075e348ad3df746100bdbec0..a29cf1a156c2022e591ad151695f8c0d38e600c6 100644 (file)
@@ -8,7 +8,7 @@
 #       on the local LAN. This is useful for configuring unicast DNS servers in \
 #       a DHCP-like fashion with mDNS.
 # processname: avahi-dnsconfd
-# config: 
+# config:
 
 OTHER_AVAHI_OPTS=""
 
@@ -18,9 +18,9 @@ OTHER_AVAHI_OPTS=""
 
 AVAHI_BIN=@sbindir@/avahi-dnsconfd
 
-if [ $1 == 'status' ]; then
+if [ "$1" == 'status' ]; then
     test -x $AVAHI_BIN || exit 4
-else 
+else
     test -x $AVAHI_BIN || exit 5
 fi
 
@@ -88,7 +88,7 @@ case "$1" in
        restart
        ;;
   reload)
-        reload 
+        reload
        ;;
   condrestart)
        if [ -f $LOCKFILE ]; then
@@ -102,4 +102,3 @@ case "$1" in
 esac
 
 exit $RETVAL
-