aboutsummaryrefslogtreecommitdiffstats
path: root/www-misc/skein/files/cgit-chroot.initd
blob: bdbc5fb81214e729cea0e19348bc37256b002a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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 CGIT_CHROOT="${CGIT_CHROOT:-/srv/cgit}"
export CGIT_GIT_ROOT="${CGIT_GIT_ROOT:-/srv/git}"

start_pre() {
	checkpath -o root -d "${CGIT_CHROOT}"
	checkpath -o root -d "${CGIT_GIT_ROOT}"
}

start() {
	/usr/libexec/skein/cgit-chroot setup
}

stop() {
	/usr/libexec/skein/cgit-chroot teardown
}