diff options
Diffstat (limited to 'mail/exim/files/exim.sh')
-rw-r--r-- | mail/exim/files/exim.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mail/exim/files/exim.sh b/mail/exim/files/exim.sh index 09e3e6ef9eb6..3b58c00fa14f 100644 --- a/mail/exim/files/exim.sh +++ b/mail/exim/files/exim.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id$ +# $FreeBSD$ # # Note that 'pidfile' may need to be changed if 'args' is altered; see # the description of the 'pid_file_path' Exim configuration option in @@ -17,8 +17,11 @@ start) stop) kill `cat ${pidfile}` && echo -n ' exim' ;; +reload) + kill -HUP `cat ${pidfile}` && echo -n ' exim' + ;; *) - echo "Usage: `basename $0` {start|stop}" >&2 + echo "Usage: `basename $0` {start|stop|reload}" >&2 exit 64 ;; esac |