Manuel Friedli
6f4291fd4a
Add ebuild for version 10.0.2; this is the first ebuild of this package. Package-Manager: Portage-2.3.8, Repoman-2.3.3
23 lines
666 B
Text
23 lines
666 B
Text
#!/sbin/openrc-run
|
|
# Copyright 2015-2017 Nicolas Heine
|
|
|
|
depend() {
|
|
after sshd
|
|
need net
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting gitlab-runner"
|
|
checkpath -d /var/run
|
|
checkpath -f -o ${USER} -m640 "${LOGFILE}"
|
|
start-stop-daemon --start -b -u ${USER} --chdir "${HOME_DIR}" --pidfile /var/run/gitlab-runner.pid -1 "${LOGFILE}" -2 "${LOGFILE}" --make-pidfile \
|
|
--exec /usr/bin/gitlab-runner -- run --config /etc/gitlab-runner/config.toml
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping gitlab-runner"
|
|
start-stop-daemon --stop --pidfile /var/run/gitlab-runner.pid
|
|
eend $?
|
|
}
|