summaryrefslogtreecommitdiffstats
path: root/contrib/init/openbsd/gitea
blob: 89d4f6803e680c501b184ea923a1848bd4039e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# $OpenBSD$

daemon="/usr/local/bin/gitea"
daemon_user="git"
daemon_flags="web -c /etc/gitea/app.ini"

gitea_directory="/var/lib/gitea"

rc_bg=YES

. /etc/rc.d/rc.subr

rc_start() {
	${rcexec} "cd ${gitea_directory}; ${daemon} ${daemon_flags} ${_bg}"
}

rc_cmd $1