summaryrefslogtreecommitdiffstats
path: root/contrib/init/gentoo/gitea
blob: c40fc93f5f6adcfe815ab48b7135f13c96e7ceff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/sbin/openrc-run

DIR=/var/lib/gitea
USER=git

start_stop_daemon_args="--user ${USER} --chdir ${DIR}"
command="/usr/local/bin/gitea"
command_args="web -c /etc/gitea/app.ini"
command_background=yes
pidfile=/var/run/gitea.pid

depend()
{
    need net
}