blob: 016a84ced9446cff03b9188b667ce291369bca8a (
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
|
#!/sbin/openrc-run
name="Vault server"
description="Vault is a tool for securely accessing secrets"
description_reload="Reload configuration"
extra_started_commands="reload"
command="/usr/sbin/${RC_SVCNAME}"
command_args="${vault_opts}"
command_user="${RC_SVCNAME}:${RC_SVCNAME}"
supervisor=supervise-daemon
output_log="/var/log/${RC_SVCNAME}.log"
error_log="/var/log/${RC_SVCNAME}.log"
respawn_max=0
respawn_delay=10
depend() {
need net
after firewall
}
start_pre() {
checkpath -f -m 0644 -o "$command_user" "$output_log" "$error_log"
}
reload() {
start_pre \
&& ebegin "Reloading $RC_SVCNAME configuration" \
&& $supervisor "$RC_SVCNAME" --signal HUP
eend $?
}
|