aboutsummaryrefslogblamecommitdiffstats
path: root/www-misc/skein/files/skein-infra.initd
blob: 95febeeb84fd2816ea1bc87eb925530041be9292 (plain) (tree)




















                                                                  
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

description="Sets up the chroot environment for cgit"

export SKEIN_CGIT_ROOT="${SKEIN_CGIT_ROOT:-/srv/cgit}"
export SKEIN_GIT_ROOT="${SKEIN_GIT_ROOT:-/srv/git}"

start_pre() {
	checkpath -o root -d "${SKEIN_CGIT_ROOT}"
	checkpath -o root -d "${SKEIN_GIT_ROOT}"
}

start() {
	/usr/sbin/skein-infra setup
}

stop() {
	/usr/sbin/skein-infra teardown
}