blob: 0be74555483190590a1425bb0031c808e6213fe5 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/sh
#
# $NetBSD: sasl_pwcheck.sh,v 1.1 2000/12/13 16:24:51 jlam Exp $
#
# The pwcheck daemon allows UNIX password authentication with Cyrus SASL.
#
# PROVIDE: sasl_pwcheck
# REQUIRE: DAEMON
name="sasl_pwcheck"
command=@PREFIX@/sbin/pwcheck
command_args="& sleep 2"
pid=`ps -ax | awk '{print $1,$5}' | grep ${name} | awk '{print $1}'`
cmd=${1:-start}
case ${cmd} in
start)
if [ "$pid" = "" -a -x ${command} ]
then
echo "Starting ${name}."
${command} ${command_args}
fi
;;
restart)
( $0 stop )
sleep 1
$0 start
;;
stop)
if [ "$pid" != "" ]
then
echo "Stopping ${name}."
kill $pid
fi
;;
status)
if [ "$pid" != "" ]
then
echo "${name} is running as pid ${pid}."
else
echo "${name} is not running."
fi
;;
*)
echo 1>&2 "Usage: ${name} [restart|start|stop|status]"
exit 1
;;
esac
exit 0
|