Manuel Friedli
8efa7d7d6f
Update ebuild for gitlab-gitaly-0.11.2 in preparation of the addition of gitlab-ce-9.3.5 Package-Manager: Portage-2.3.6, Repoman-2.3.1
19 lines
631 B
Text
19 lines
631 B
Text
#!/sbin/openrc-run
|
|
|
|
start() {
|
|
ebegin "Starting gitlab-gitaly"
|
|
|
|
checkpath -f -m 640 -o ${RUNAS_USER}:${RUNAS_GROUP} ${LOGFILE}
|
|
[ -z "${SOCKETDIR}" ] || checkpath -d -m 700 -o ${RUNAS_USER}:${RUNAS_GROUP} ${SOCKETDIR}
|
|
|
|
start-stop-daemon --start --exec /usr/bin/gitlab-gitaly --pidfile /run/gitlab-gitaly.pid \
|
|
--make-pidfile --background --user ${RUNAS_USER}:${RUNAS_GROUP} --stdout "${LOGFILE}" --stderr "${LOGFILE}" \
|
|
-- ${CONFIGFILE}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping gitlab-gitaly"
|
|
start-stop-daemon --stop --exec /usr/bin/gitlab-gitaly --pidfile /run/gitlab-gitaly.pid --user ${RUNAS_USER}:${RUNAS_GROUP}
|
|
eend $?
|
|
}
|