blob: 21d87c53db3ab8fa355f6c3f60d4b069c8ac2ecb (
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
|
#!/sbin/openrc-run
: ${cfgfile:="/etc/kea/@@NAME@@.conf"}
: ${logger_dest:="syslog"}
: ${command_user:="kea"}
: ${wait:=300}
name="@@NAME@@"
extra_commands="checkconfig"
description_checkconfig="Checks configuration file for errors"
command="/usr/sbin/@@NAME@@"
command_args="-c $cfgfile"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
start_stop_daemon_args="
--wait $wait
--env KEA_LOGGER_DESTINATION=$logger_dest
$start_stop_daemon_args"
depend() {
need net
after firewall
}
start_pre() {
checkpath -d -m 0750 -o $command_user /run/kea /run/kea/lock
checkconfig
}
checkconfig() {
ebegin "Checking $name configuration"
$command -t "$cfgfile" >/dev/null
eend $?
}
|