mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 18:29:05 +01:00
a06c3ad2c0
* Renamed scripts directory into contrib * Added script to download gitignores from github * Synced gitignores with github repo
19 lines
256 B
Bash
Executable file
19 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
|