17 lines
441 B
Text
17 lines
441 B
Text
#!/sbin/openrc-run
|
|
|
|
name="Railiance Gitea Actions runner"
|
|
description="Forge-owned Gitea act_runner service"
|
|
command="/usr/local/bin/act_runner"
|
|
command_args="daemon --config /etc/act_runner/config.yaml"
|
|
command_user="act_runner:act_runner"
|
|
directory="/var/lib/act_runner"
|
|
pidfile="/run/act_runner.pid"
|
|
command_background="yes"
|
|
output_log="/var/log/act_runner.log"
|
|
error_log="/var/log/act_runner.err"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|