diff options
Diffstat (limited to 'mail/exim-old/files/exim.sh')
-rw-r--r-- | mail/exim-old/files/exim.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/mail/exim-old/files/exim.sh b/mail/exim-old/files/exim.sh deleted file mode 100644 index 09e3e6ef9eb6..000000000000 --- a/mail/exim-old/files/exim.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $Id$ -# -# Note that 'pidfile' may need to be changed if 'args' is altered; see -# the description of the 'pid_file_path' Exim configuration option in -# the Exim Specification. -# -args='-bd -q30m' -pidfile='/var/run/exim.pid' - -case "$1" in -start) - [ -x /usr/local/sbin/exim ] && /usr/local/sbin/exim ${args} && \ - echo -n ' exim' - ;; -stop) - kill `cat ${pidfile}` && echo -n ' exim' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 - |