summaryrefslogtreecommitdiff
path: root/www-apps/gitea/files/gitea.initd-r1
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/gitea/files/gitea.initd-r1')
-rw-r--r--www-apps/gitea/files/gitea.initd-r125
1 files changed, 25 insertions, 0 deletions
diff --git a/www-apps/gitea/files/gitea.initd-r1 b/www-apps/gitea/files/gitea.initd-r1
new file mode 100644
index 000000000000..837164aa0140
--- /dev/null
+++ b/www-apps/gitea/files/gitea.initd-r1
@@ -0,0 +1,25 @@
+#!/sbin/openrc-run
+# Copyright 2016-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Gitea, a self-hosted Git service"
+pidfile=${pidfile:-"/run/${SVCNAME}/${SVCNAME}.pid"}
+user=${user:-git}
+group=${group:-git}
+
+command="/usr/bin/gitea web"
+command_args="${command_args:--config /var/lib/gitea/conf/app.ini}"
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+ -e GITEA_WORK_DIR=/var/lib/gitea
+ --stdout /var/log/${SVCNAME}/${SVCNAME}.log \
+ --stderr /var/log/${SVCNAME}/${SVCNAME}.log"
+
+depend() {
+ need net
+ after net
+}
+
+start_pre() {
+ checkpath -d -m 0755 -o "${user}":"${group}" "${pidfile%/*}"
+}