blob: 7ddb12a9787ef0743ea6a651497a2e0e71283e32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/openrc-run
export CONDUIT_CONFIG=${CONDUIT_CONFIG:/etc/config/conduit.toml}
command="/usr/bin/conduit"
command_user="conduit:conduit"
command_background=true
pidfile="/run/${RC_SVCNAME}.pid"
output_log="/var/log/conduit.log"
error_log="/var/log/conduit.log"
depend() {
need net
}
start_pre() {
checkpath -d -m 0755 -o "$command_user" /var/lib/conduit
checkpath -f -m 0644 -o "$command_user" "$output_log"
}
|