13 lines
268 B
Plaintext
13 lines
268 B
Plaintext
#!/sbin/openrc-run
|
|
name="Gitea"
|
|
description="Self-hosted Git service"
|
|
command="gitea"
|
|
command_args="web --config /etc/gitea/app.ini"
|
|
command_user="gitea:gitea"
|
|
supervisor="supervise-daemon"
|
|
pidfile="/run/gitea.pid"
|
|
directory="/var/lib/gitea"
|
|
depend() {
|
|
need net
|
|
}
|