X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=exim.init;h=d684c122e2099b4e007f7d28992c395f2df95a9d;hb=cf1436c84f3b8b41b92db56ad5740e50c151e08b;hp=b15eea28a9db0b3dd63152298a4140a70353133a;hpb=f188b1d524c1ab3fb1354164fe93920f29cf20e8;p=packages%2Fexim.git diff --git a/exim.init b/exim.init old mode 100644 new mode 100755 index b15eea2..d684c12 --- a/exim.init +++ b/exim.init @@ -7,7 +7,7 @@ # that moves mail from one machine to another. # processname: exim # config: /etc/exim.cf -# pidfile: /var/run/exim.pid +# pidfile: /var/spool/exim/exim-daemon.pid # Source function library. . /etc/rc.d/init.d/functions @@ -15,66 +15,144 @@ # Source networking configuration. . /etc/sysconfig/network +QUEUE=1h + +EXIM_CONFIG=/etc/mail/exim.conf + # Source exim configureation. -if [ -f /etc/sysconfig/exim ] ; then +if [ -f /etc/sysconfig/exim ]; then . /etc/sysconfig/exim -else - QUEUE=1h fi # Check that networking is up. if is_yes "${NETWORKING}"; then - if [ ! -f /var/lock/subsys/network ]; then - msg_network_down Exim + if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then + msg_network_down "Exim" exit 1 fi else exit 0 fi -# See how we were called. -case "$1" in - start) +checkconfig() { + local details=${1:-0} ret + + RETVAL=0 + if [ $details = 1 ]; then + for CONFIG in "$EXIM_CONFIG" $EXIM_EXTRA_CONFIGS; do + run_cmd "Checking exim configuration ($CONFIG)" exim -bV -C $CONFIG + ret=$? + if [ $ret != 0 ]; then + RETVAL=$ret + fi + done + else + for CONFIG in "$EXIM_CONFIG" $EXIM_EXTRA_CONFIGS; do + exim -bV -C "$CONFIG" > /dev/null 2>&1 + ret=$? + if [ $ret != 0 ]; then + show "Checking %s configuration (%s)" "exim" "$CONFIG"; fail + RETVAL=$ret + fi + done + if [ $RETVAL != 0 ]; then + nls 'Configuration test failed. See details with %s "checkconfig"' $0 + exit $RETVAL + fi + fi +} + +start() { # Start daemons. + if [ -f /var/lock/subsys/exim ]; then + msg_already_running "Exim" + return + fi + + msg_starting "Exim" + daemon /usr/bin/exim \ + -oP /var/spool/exim/exim-daemon.pid \ + $( is_yes "$ALLOW_TCP_CONNECTIONS" && echo -bd ) \ + $( [ -n "$QUEUE" ] && echo -q$QUEUE ) \ + -C "$EXIM_CONFIG" + for CONFIG in $EXIM_EXTRA_CONFIGS; do + msg_starting "Exim ($CONFIG)" + daemon exim \ + $( is_yes "$ALLOW_TCP_CONNECTIONS" && echo -bd ) \ + $( [ -n "$QUEUE" ] && echo -q$QUEUE ) \ + -C $CONFIG + done + RETVAL=$? + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/exim +} + +stop() { + # Stop daemons. if [ ! -f /var/lock/subsys/exim ]; then - msg_starting Exim - daemon exim \ - $( is_yes "$ALLOW_TCP_CONNECTIONS" && echo -bd ) \ - $( [ -n "$QUEUE" ] && echo -q$QUEUE ) - RETVAL=$? - [ $RETVAL -eq 0 ] && touch /var/lock/subsys/exim - else - msg_already_running Exim + msg_not_running "Exim" + return + fi + + msg_stopping "Exim" + killproc --pidfile /var/spool/exim/exim-daemon.pid exim + rm -f /var/lock/subsys/exim /var/spool/exim/exim-daemon.pid >/dev/null 2>&1 +} + +condrestart() { + if [ ! -f /var/lock/subsys/exim ]; then + msg_not_running "Exim" + RETVAL=$1 + return fi + + checkconfig + stop + start +} + +reload() { + if [ ! -f /var/lock/subsys/exim ]; then + msg_not_running "Exim" + RETVAL=7 + return + fi + + checkconfig + msg_reloading "Exim" + killproc exim -HUP + RETVAL=$? +} + +RETVAL=0 +# See how we were called. +case "$1" in + start) + start ;; stop) - # Stop daemons. - if [ -f /var/lock/subsys/exim ]; then - msg_stopping Exim - killproc exim - rm -f /var/lock/subsys/exim >/dev/null 2>&1 - else - msg_not_running Exim - exit 1 - fi + stop ;; restart) - $0 stop - $0 start + checkconfig + stop + start + ;; + try-restart) + condrestart 0 + ;; + reload|force-reload) + reload + ;; + checkconfig|configtest) + checkconfig 1 ;; status) status exim - ;; - reload) - msg_reloading Exim - busy - killproc exim -HUP - RETVAL=$? - [ $RETVAL -eq 0 ] && ok || died + exit $? ;; *) - msg_usage "$0 {start|stop|restart|reload|status}" - exit 1 + msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|configtest|status}" + exit 3 esac exit $RETVAL