diff options
author | Richard A Nelson (Rick) <cowboy@debian.org> | 2000-05-25 17:00:00 -0500 |
---|---|---|
committer | Andreas Beckmann <debian@abeckmann.de> | 2012-10-01 19:58:40 +0200 |
commit | e138436bd1943587e16b03505f8b8cc0307c4211 (patch) | |
tree | 23d7165ea5ea99bb43ae1568f4b74d5e59a3bddb /debian/sendmail.init | |
parent | 4e2c4cdcd62c4ab1d5e884e8afaa0bbe1b981e42 (diff) | |
download | sendmail-debian/8.9.3-23.tar.gz |
Imported Debian patch 8.9.3-23debian/8.9.3-23
Diffstat (limited to 'debian/sendmail.init')
-rw-r--r-- | debian/sendmail.init | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/debian/sendmail.init b/debian/sendmail.init deleted file mode 100644 index 3d688b4..0000000 --- a/debian/sendmail.init +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -# Start or stop sendmail -# -# Robert Leslie <rob@mars.org> -# Johnie Ingram <johnie@netgod.net> -# David Rocher <rocher@mail.dotcom.fr> -# Richard Nelson <cowboy@debain.org> - -# How often to run the queue -Q="10m" - -PATH=/bin:/usr/bin:/sbin:/usr/sbin -DAEMON=/usr/sbin/sendmail -COMMAND=/usr/sbin/sendmail -PIDFILE=/var/run/sendmail.pid -NAME=sendmail -FLAGS="defaults 50" - -test -x $DAEMON -a -d /usr/doc/sendmail || exit 0 - -case "$1" in - start) - ( cd /var/spool/mqueue && rm -f [lnx]f* ) - echo -n "Starting mail transport agent: sendmail" - start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --startas $COMMAND -- -bd -q"$Q" - echo "." - ;; - - stop) - echo -n "Stopping mail transport agent: sendmail" - start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON - echo "." - ;; - - restart) - $0 stop - sleep 2 - $0 start - ;; - - reload) - echo -n "Reloading sendmail configuration..." - start-stop-daemon --stop --signal 1 --quiet \ - --pidfile $PIDFILE --exec $DAEMON - echo "done." - ;; - - force-reload) - $0 reload - ;; - - debug) - start-stop-daemon --stop --signal 10 --verbose \ - --pidfile $PIDFILE --exec $DAEMON - ;; - - *) - echo "Usage: /etc/init.d/sendmail {start|stop|restart|reload|force-reload|debug}" - exit 1 - ;; -esac - -exit 0 |