]> git.meshlink.io Git - catta/commitdiff
* added a status check
authorSebastien Estienne <sebastien.estienne@gmail.com>
Sat, 4 Feb 2006 14:10:16 +0000 (14:10 +0000)
committerSebastien Estienne <sebastien.estienne@gmail.com>
Sat, 4 Feb 2006 14:10:16 +0000 (14:10 +0000)
 * don't try to start the daemon if already running
 * don't try to stop the daemon if already stopped
 * don't try reloading the config file if not running

git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1129 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

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

index feecc847a8b70f903b41c6e63b678949103f6696..e942785a7e611d36f68c276aadef8e685a0100b5 100755 (executable)
@@ -91,6 +91,9 @@ test -x $DAEMON || exit 0
 #       Function that starts the daemon/service.
 #
 d_start() {
+    $DAEMON -c
+    [ $? = 0 ] && exit 0
+
     if [ -s /etc/localtime ]; then
        if [ ! -d /etc/avahi/etc ]; then
            mkdir -p @sysconfdir@/avahi/etc >/dev/null 2>&1
@@ -105,16 +108,29 @@ d_start() {
 #       Function that stops the daemon/service.
 #
 d_stop() {
-    $DAEMON -k || /bin/true
+    $DAEMON -c
+    [ $? != 0 ] && exit 0
+
+    $DAEMON -k
 }
 
 #
 #       Function that reload the config file for the daemon/service.
 #
 d_reload() {
+    $DAEMON -c
+    [ $? != 0 ] && exit 0
+
     $DAEMON -r
 }
 
+#
+#       Function that check the status of the daemon/service.
+#
+d_status() {
+    $DAEMON -c
+    [ $? = 0 ]  && echo "$DESC is running" || echo "$DESC is not running"
+}
 
 case "$1" in
     start)
@@ -138,7 +154,10 @@ case "$1" in
         d_start
         log_end_msg $?
         ;;
-  *)
+    status)
+        d_status
+       ;;
+    *)
         echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|reload}" >&2
         exit 1
         ;;
index 649d72f2b1fbd40c638f1ec244caa2ad1b321070..d100d177573a571a142ca8e0e7e97df50f28a838 100755 (executable)
@@ -91,6 +91,9 @@ test -x $DAEMON || exit 0
 #       Function that starts the daemon/service.
 #
 d_start() {
+    $DAEMON -c
+    [ $? = 0 ] && exit 0
+
     if [ -s /etc/localtime ]; then
        if [ ! -d /etc/avahi/etc ]; then
            mkdir -p @sysconfdir@/avahi/etc >/dev/null 2>&1
@@ -105,16 +108,29 @@ d_start() {
 #       Function that stops the daemon/service.
 #
 d_stop() {
-    $DAEMON -k || /bin/true
+    $DAEMON -c
+    [ $? != 0 ] && exit 0
+
+    $DAEMON -k
 }
 
 #
 #       Function that reload the config file for the daemon/service.
 #
 d_refresh() {
+    $DAEMON -c
+    [ $? != 0 ] && exit 0
+
     $DAEMON -r
 }
 
+#
+#       Function that check the status of the daemon/service.
+#
+d_status() {
+    $DAEMON -c
+    [ $? = 0 ]  && echo "$DESC is running" || echo "$DESC is not running"
+}
 
 case "$1" in
     start)
@@ -138,7 +154,10 @@ case "$1" in
         d_start
         log_end_msg $?
         ;;
-  *)
+    status)
+        d_status
+       ;;
+    *)
         echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|reload}" >&2
         exit 1
         ;;