summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-12-17 12:42:54 +0000
committerLennart Poettering <lennart@poettering.net>2007-12-17 12:42:54 +0000
commit7a49810ba00b19a75189689eb8c3948dbc721966 (patch)
tree67ab95824160622feff7d4df6dda5b5958cb4ad3
parentbb8bd5490a71bc77570653cf53be88edd37679e3 (diff)
fix init scripts when called without any arguments. Closes rhbz 425491
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1594 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--initscript/fedora/avahi-daemon.in2
-rw-r--r--initscript/fedora/avahi-dnsconfd.in9
2 files changed, 5 insertions, 6 deletions
diff --git a/initscript/fedora/avahi-daemon.in b/initscript/fedora/avahi-daemon.in
index f267577..69fac9b 100644
--- a/initscript/fedora/avahi-daemon.in
+++ b/initscript/fedora/avahi-daemon.in
@@ -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
diff --git a/initscript/fedora/avahi-dnsconfd.in b/initscript/fedora/avahi-dnsconfd.in
index 4b96e94..a29cf1a 100644
--- a/initscript/fedora/avahi-dnsconfd.in
+++ b/initscript/fedora/avahi-dnsconfd.in
@@ -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
-