mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
a06c3ad2c0
* Renamed scripts directory into contrib * Added script to download gitignores from github * Synced gitignores with github repo
20 lines
256 B
Bash
Executable File
20 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $OpenBSD$
|
|
|
|
daemon="/home/git/gitea/gitea"
|
|
daemon_user="git"
|
|
daemon_flags="web"
|
|
|
|
gitea_directory="/home/git/gitea"
|
|
|
|
rc_bg=YES
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_start() {
|
|
${rcexec} "cd ${gitea_directory}; ${daemon} ${daemon_flags} ${_bg}"
|
|
}
|
|
|
|
rc_cmd $1
|