diff options
Diffstat (limited to 'mail/zmailer/files/zmailer.sh.sample')
-rw-r--r-- | mail/zmailer/files/zmailer.sh.sample | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/zmailer/files/zmailer.sh.sample b/mail/zmailer/files/zmailer.sh.sample new file mode 100644 index 000000000000..63cc33d27277 --- /dev/null +++ b/mail/zmailer/files/zmailer.sh.sample @@ -0,0 +1,23 @@ +#!/bin/sh + +if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then + echo "$0: Cannot determine the PREFIX" >&2 + exit 1 +fi + +case "$1" in +start) + [ -x ${PREFIX}/sbin/zmailer ] && \ + ${PREFIX}/sbin/zmailer start >/dev/null 2>&1 && \ + echo -n ' zmailer' + ;; +stop) + # just a wild guess + # ${PREFIX}/sbin/zmailer stop && echo -n ' zmailer' + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + ;; +esac + +exit 0 |