mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 04:35:13 +03:00
14 lines
255 B
Bash
14 lines
255 B
Bash
#!/sbin/openrc-run
|
|
|
|
: ${cfgfile:=/etc/go-audit.yaml}
|
|
|
|
description="Linux Auditing System Written In Go"
|
|
|
|
command="/usr/sbin/${RC_SVCNAME}"
|
|
command_args="-config $cfgfile"
|
|
command_background="yes"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
|
|
depend() {
|
|
use logger
|
|
}
|