]> git.pld-linux.org Git - packages/exim-lite.git/commitdiff
Standarized all rc scripts.
authorkloczek <kloczek@pld-linux.org>
Sun, 18 Jul 1999 02:03:49 +0000 (02:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    exim.init -> 1.3

exim.init

index 84d938feb189282a162db85b59601bf7e0167b11..cdc20ac4ab8357d8cea56ca28c232b878b34d535 100644 (file)
--- a/exim.init
+++ b/exim.init
@@ -3,39 +3,42 @@
 # exim          This shell script takes care of starting and stopping
 #               Exim.
 #
-# chkconfig: 2345 80 30
-# description: Exim is a Mail Transport Agent, which is the program \
-#              that moves mail from one machine to another.
-# processname: exim
-# config: /etc/exim.cf
-# pidfile: /var/run/exim.pid
-
-# Source function library.
+# chkconfig:   2345 80 30
+#
+# description: Exim is a Mail Transport Agent, which is the program \
+#              that moves mail from one machine to another.
+#
+# processname: exim
+# config:      /etc/exim.cf
+# pidfile:     /var/run/exim.pid
+
+
+# Source function library
 . /etc/rc.d/init.d/functions
 
-# Source networking configuration.
+# Get network config
 . /etc/sysconfig/network
 
-# Source sendmail configureation.
-if [ -f /etc/sysconfig/exim ] ; then
-       . /etc/sysconfig/exim
+# Get service config
+if [ -f /etc/sysconfig/hc-cron ]; then
+       . /etc/sysconfig/hc-cron
 else
        DAEMON=yes
        QUEUE=1h
 fi
 
-# Check that networking is up.
-[ "${NETWORKING}" = "no" ] && exit 0
-
-[ -f /usr/bin/exim ] || exit 0
 
 # See how we were called.
 case "$1" in
   start)
-       # Start daemons.
-       show Starting exim:
-       daemon +5 exim $([ "$DAEMON" = yes ] && echo -bd) \
-                                  $([ -n "$QUEUE" ] && echo -q$QUEUE)
+       # Check if the service is already running?
+       if [ ! -f /var/lock/subsys/exim ]; then
+               show Starting exim
+               daemon exim $([ "$DAEMON" = yes ] && echo -bd) \
+                       $([ -n "$QUEUE" ] && echo -q$QUEUE)
+       else
+               echo "Exim already is running"
+       fi
        touch /var/lock/subsys/exim
        ;;
   stop)
@@ -44,7 +47,7 @@ case "$1" in
        killproc exim
        rm -f /var/lock/subsys/exim
        ;;
-  restart)
+  restart|reload)
        $0 stop
        $0 start
        ;;
@@ -52,7 +55,7 @@ case "$1" in
        status exim
        ;;
   *)
-       echo "Usage: $0 {start|stop|restart|status}"
+       echo "Usage: $0 {start|stop|staus|restart|reload}"
        exit 1
 esac
 
This page took 0.073688 seconds and 4 git commands to generate.