1. remove useless files like "backport.go", "update_dependencies.sh" 2. remove outdated "init" scripts, only keep one in sysvinit, gentoo dir is also kept because it still uses openrc 3. move "service" related config and scripts into "service" directory
20 lines
276 B
Bash
Executable File
20 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $OpenBSD$
|
|
|
|
daemon="/usr/local/bin/gitea"
|
|
daemon_user="git"
|
|
daemon_flags="web -c /etc/gitea/app.ini"
|
|
|
|
gitea_directory="/var/lib/gitea"
|
|
|
|
rc_bg=YES
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_start() {
|
|
${rcexec} "cd ${gitea_directory}; ${daemon} ${daemon_flags} ${_bg}"
|
|
}
|
|
|
|
rc_cmd $1
|