aboutsummaryrefslogtreecommitdiffstats
path: root/mail/cyrus-imapd2/files/cyrus.sh
blob: 9248623a8fe23ade4311f1dbd05042ecc72aab4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
PREFIX=%%PREFIX%%

case "$1" in

start)
    if [ -x ${PREFIX}/cyrus/bin/pwcheck ]
    then
        ${PREFIX}/cyrus/bin/pwcheck & && echo -n " pwcheck"
    fi
    ;;

stop)
    if [ -r /var/run/pwcheck.pid ]
    then
        kill `cat /var/run/pwcheck.pid` && echo -n " pwcheck"
    fi
    ;;

*)
    echo "usage: $0 {start|stop}" 1>&2
    exit 64
    ;;

esac