mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
a06c3ad2c0
* Renamed scripts directory into contrib * Added script to download gitignores from github * Synced gitignores with github repo
16 lines
224 B
Plaintext
16 lines
224 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
DIR=/home/git/gitea
|
|
USER=git
|
|
|
|
start_stop_daemon_args="--user ${USER} --chdir ${DIR}"
|
|
command="${DIR}/gitea"
|
|
command_args="web"
|
|
command_background=yes
|
|
pidfile=/var/run/gitea.pid
|
|
|
|
depend()
|
|
{
|
|
need net
|
|
}
|