blob: a07473542da1b37c79d511df1cf02cf0947a14df (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/sh
#
# $NetBSD: pksd.sh,v 1.3 2001/11/21 15:14:02 jlam Exp $
#
# PROVIDE: pksd
# REQUIRE: DAEMON
if [ -d /etc/rc.d -a -f /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="pksd"
rcvar=${name}
command="@PREFIX@/bin/pksd"
run_command="@PREFIX@/bin/pks-queue-run.sh"
ctl_command="@PREFIX@/bin/pksdctl"
client_command="@PREFIX@/bin/pksclient"
conf_file="@CONFDIR@/${name}.conf"
required_files="${conf_file}"
extra_commands="dbinit"
pksd_dbinit()
{
(
umask 022
if [ -r ${conf_file} ]
then
dbdir=`@AWK@ '/db_dir/ { print $2 }' < ${conf_file}`
if [ ! -f ${dbdir}/keydb000 -a -x ${client_command} ]
then
${client_command} ${dbdir} create
fi
fi
)
}
pksd_start()
{
if [ -r ${conf_file} -a -x ${command} -a -x ${run_command} ]
then
@ECHO@ "Starting ${name} (local)."
@ECHO@ "${command} ${conf_file}"
${command} ${conf_file} &
sleep 5
${run_command} ${conf_file}
fi
}
pksd_stop()
{
if [ -r ${conf_file} -a -x ${ctl_command} ]
then
socket=`@AWK@ '/socket_name/ { print $2 }' < ${conf_file}`
if [ -S ${socket} ]
then
@ECHO@ "Stopping ${name} (local)."
${ctl_command} ${socket} shutdown
fi
fi
}
dbinit_cmd=pksd_dbinit
start_precmd=pksd_dbinit
start_cmd=pksd_start
stop_cmd=pksd_stop
if [ ! -d /etc/rc.d ]
then
@ECHO@ -n " ${name}"
pksd_dbinit
pksd_start
else
load_rc_config $name
run_rc_command "$1"
fi
|