16 lines
296 B
Bash
16 lines
296 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="ezidam"
|
|
command="/usr/bin/ezidam"
|
|
command_args=
|
|
command_background=true
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
output_log="/var/log/${RC_SVCNAME}.log"
|
|
error_log="/var/log/${RC_SVCNAME}.err"
|
|
|
|
depend() {
|
|
need net
|
|
use logger
|
|
}
|
|
|
|
export EZIDAM_CONFIG="/etc/ezidam/ezidam.toml"
|