blob: f0659a7ad3e3de4b81256ceeaca21dc4d2b035f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
supervisor=supervise-daemon
description="GitLab CI Runner"
name="Gitlab Runner"
command="/usr/bin/gitlab-runner"
command_args="run ${GITLAB_RUNNER_OPTS}"
command_user="${GITLAB_RUNNER_USER}:${GITLAB_RUNNER_GROUP}"
depend() {
need net
}
|