diff options
Diffstat (limited to 'mail/exim-old/files/exim.sh')
-rw-r--r-- | mail/exim-old/files/exim.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/exim-old/files/exim.sh b/mail/exim-old/files/exim.sh deleted file mode 100644 index 6e25c5a56d0b..000000000000 --- a/mail/exim-old/files/exim.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -args='-bd -q30m' - -case "$1" in -start) - [ -x /usr/local/sbin/exim ] && /usr/local/sbin/exim $args && echo -n ' exim' - ;; -stop) - killall exim && echo -n ' exim' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 |