diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-01-08 10:25:05 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-01-08 10:25:05 +0000 |
commit | cb034e3273dfc0a47a1e7de16a2ba0d55e3b690f (patch) | |
tree | 009a42b7df5586f0f1b618e8a53441ff60a7b20a /mail/sqwebmail/files/sqwebmail-authdaemond.sh | |
parent | Chase shlib version in qdbm (diff) |
upadate to courier-authlib 0.52, courier-imap 4.0.1 and sqwebmail 5.0.0
Special thanks for testing and sugestions to: Brian Candler <B.Candler@pobox.com>
Notes
Notes:
svn path=/head/; revision=125759
Diffstat (limited to 'mail/sqwebmail/files/sqwebmail-authdaemond.sh')
-rw-r--r-- | mail/sqwebmail/files/sqwebmail-authdaemond.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mail/sqwebmail/files/sqwebmail-authdaemond.sh b/mail/sqwebmail/files/sqwebmail-authdaemond.sh deleted file mode 100644 index cd05b44900b1..000000000000 --- a/mail/sqwebmail/files/sqwebmail-authdaemond.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/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) - [ -r ${PREFIX}/share/sqwebmail/authdaemonrc ] && ${PREFIX}/libexec/sqwebmail/authlib/authdaemond start > /dev/null && echo -n ' authdaemond' - ;; -stop) - ${PREFIX}/libexec/sqwebmail/authlib/authdaemond stop > /dev/null && echo -n ' authdaemond' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 - |