]> git.pld-linux.org Git - packages/dictd.git/blobdiff - dictd.init
- LSB conformance
[packages/dictd.git] / dictd.init
index 13dff9de1318d4e1b655942094df24f1faf17a4f..38aa0f405f547e29fcd24f6d55b66e0a62d18b75 100644 (file)
@@ -4,12 +4,12 @@
 #
 # chkconfig:   345 90 10
 # description: This is a daemon for the Dictionary Server Protocol (DICT), \
-#               a TCP transaction based query/response protocol that allows \
-#               a client to access dictionary definitions from a set of \
+#              a TCP transaction based query/response protocol that allows \
+#              a client to access dictionary definitions from a set of \
 #              natural language dictionary databases.
 # processname: dictd
 # config:      /etc/dictd.conf 
-# config:       /etc/dictd/*
+# config:      /etc/dictd/*
 
 DAEMON_FILE=dictd
 DAEMON_NAME="Dictionary Daemon"  
@@ -20,12 +20,12 @@ generate_dictdconf() {
     if ls /etc/dictd/*.dictconf >/dev/null 2>&1; then 
        echo "# DO NOT EDIT! This file is autogenerated by $0." >$DAEMON_CONF
        echo "# To configure dictd edit /etc/dictd/* files and restart daemon"\
-          >>$DAEMON_CONF
+           >>$DAEMON_CONF
        cat /etc/dictd/dictd-main.conf /etc/dictd/*.dictconf >>$DAEMON_CONF
        return 0
     fi 
 
-    echo "$0: no dictionaries found"
+    echo "$0: $(nls 'no dictionaries found')"
     return 1   
 }
 
@@ -35,9 +35,13 @@ generate_dictdconf() {
 # Get network config
 . /etc/sysconfig/network
 
-if is_no "${NETWORKING}"; then
-       msg_Network_Down ${DAEMON_FILE}
-        exit 1
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network ]; then
+               msg_network_down ${DAEMON_FILE}
+               exit 1
+       fi
+else
+       exit 0
 fi
 
 # Get sysconfig
@@ -46,45 +50,44 @@ fi
 RETVAL=0
 # See how we were called.
 case "$1" in
-    start)
+  start)
        [ -x /usr/sbin/${DAEMON_FILE} ] || exit 0
        if [ ! -f /var/lock/subsys/${DAEMON_FILE} ]; then
                if generate_dictdconf; then 
-                   msg_starting ${DAEMON_NAME}
-                   daemon ${DAEMON_FILE} ${DICTD_OPTS}
-                   pidofproc ${DAEMON_FILE} >/dev/null 2>&1
-                   RETVAL=$?
-                   [ $RETVAL -eq 0 ] && touch /var/lock/subsys/${DAEMON_FILE}
+                       msg_starting ${DAEMON_NAME}
+                       daemon ${DAEMON_FILE} ${DICTD_OPTS}
+                       pidofproc ${DAEMON_FILE} >/dev/null 2>&1
+                       RETVAL=$?
+                       [ $RETVAL -eq 0 ] && \
+                           touch /var/lock/subsys/${DAEMON_FILE}
                else  
-                   exit 1
+                       exit 1
                fi    
        else
-               msg_Already_Running ${DAEMON_NAME}
-               exit 1
+               msg_already_running ${DAEMON_NAME}
        fi
-        ;;
-    stop)
+       ;;
+  stop)
        if [ -f /var/lock/subsys/${DAEMON_FILE} ]; then
                msg_stopping ${DAEMON_NAME}
-               busy
                killproc /usr/sbin/${DAEMON_FILE} 
                rm -f /var/lock/subsys/${DAEMON_FILE} >/dev/null 2>&1
        else
-               msg_Not_Running ${DAEMON_NAME}
-               exit 1
+               msg_not_running ${DAEMON_NAME}
        fi      
        ;;
   status)
-        status ${DAEMON_FILE}
-        ;;
-  restart|reload)
-        $0 stop
-        $0 start
-        ;;
-    *)
-       msg_Usage "$0 {start|stop|status|restart|reload}"
-       exit 1
+       status ${DAEMON_FILE}
+       exit $?
        ;;
+  restart|force-reload)
+       $0 stop
+       $0 start
+       exit $?
+       ;;
+    *)
+       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       exit 3
 esac
 
 exit $RETVAL
This page took 0.028175 seconds and 4 git commands to generate.