Author: gotar                        Date: Thu Sep 23 17:10:33 2010 GMT
Module: packages                      Tag: HEAD
---- Log message:
- start/stop/checkconfig as functions (prevents reloading the code)

---- Files affected:
packages/tacacs:
   tacacs.init (1.2 -> 1.3) 

---- Diffs:

================================================================
Index: packages/tacacs/tacacs.init
diff -u packages/tacacs/tacacs.init:1.2 packages/tacacs/tacacs.init:1.3
--- packages/tacacs/tacacs.init:1.2     Thu Sep 23 18:59:39 2010
+++ packages/tacacs/tacacs.init Thu Sep 23 19:10:27 2010
@@ -34,20 +34,17 @@
 
 [ -f "$tacacs_config" ] || exit 0
 
-if [ -z "$TACACS_PORT" ]; then
-       TACACS_PORT=49
-fi
+[ -z "$TACACS_PORT" ] && TACACS_PORT=49
+[ -z "$TACACS_DEBUG_LEVEL" ] && TACACS_DEBUG_LEVEL=0
 
-if [ -z "$TACACS_DEBUG_LEVEL" ]; then
-       TACACS_DEBUG_LEVEL=0
-fi
+checkconfig() {
+       echo "Testing TACACS+ config"
+       /usr/bin/tac_plus -P -C "$tacacs_config" -p "$TACACS_PORT"
+}
 
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
+start() {
        if [ ! -f /var/lock/subsys/tacacs ]; then
-               $0 checkconfig
+               checkconfig
                msg_starting TACACS+
                daemon --pidfile /var/run/tac_plus.pid /usr/bin/tac_plus -C 
"$tacacs_config" -p "$TACACS_PORT" -d "$TACACS_DEBUG_LEVEL"
                RETVAL=$?
@@ -55,8 +52,9 @@
        else
                msg_already_running TACACS+
        fi
-       ;;
-  stop)
+}
+
+stop() {
        if [ -f /var/lock/subsys/tacacs ]; then
                msg_stopping TACACS+
                killproc --pidfile /var/run/tac_plus.pid tac_plus
@@ -64,14 +62,24 @@
        else
                msg_not_running TACACS+
        fi
+}
+
+RETVAL=0
+# See how we were called.
+case "$1" in
+  start)
+       start
+       ;;
+  stop)
+       stop
        ;;
   status)
        status tac_plus
        exit $?
        ;;
   restart)
-       $0 stop
-       $0 start
+       stop
+       start
        ;;
   reload)
        if [ -f /var/lock/subsys/tacacs ]; then
@@ -83,8 +91,7 @@
        exit $?
        ;;
   checkconfig)
-       echo "TACACS+ config being testing"
-       /usr/bin/tac_plus -P -C "$tacacs_config" -p "$TACACS_PORT"
+       checkconfig
        ;;
   *)
        echo "Usage: $0 {start|stop|restart|reload|status|checkconfig}"
================================================================

---- CVS-web:
    
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/tacacs/tacacs.init?r1=1.2&r2=1.3&f=u

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to