1
0
mirror of https://github.com/gogs/gogs.git synced 2025-07-18 16:18:38 +00:00
2022-01-16 19:51:14 +08:00

21 lines
300 B
Bash

#!/bin/sh
#
# $OpenBSD$
# shellcheck disable=SC2034,SC1091,SC2154,SC2086
daemon="/home/git/gogs/gogs"
daemon_user="git"
daemon_flags="web"
gogs_directory="/home/git/gogs"
rc_bg=YES
. /etc/rc.d/rc.subr
rc_start() {
${rcexec} "cd ${gogs_directory}; ${daemon} ${daemon_flags} ${_bg}"
}
rc_cmd $1