mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
* APKBUILD: Leverage default_prepare and use builddir (no _). * APKBUILD: Introduce some constants for better DRY-ness, reformat package() function, create there a workdir (otherwise buildbot won't start). * buildslave.initd: Put openrc-run in shebang. It has not been tested, as buildslave setup is a bit more complicated. http://docs.buildbot.net/0.8.9/manual/installation.html#creating-a-buildslave
48 lines
1.1 KiB
Text
48 lines
1.1 KiB
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
checkconfig() {
|
|
if [ -z "${BASEDIR}" ]; then
|
|
eerror "BASEDIR not set"
|
|
return 1
|
|
fi
|
|
if [ -z "${USERNAME}" ]; then
|
|
eerror "USERNAME not set"
|
|
return 1
|
|
fi
|
|
if [ ! -d "${BASEDIR}" ]; then
|
|
eerror "${BASEDIR} is not a directory"
|
|
return 1
|
|
fi
|
|
if [ ! -e "${BASEDIR}/buildbot.tac" ]; then
|
|
eerror "${BASEDIR} does not contain buildbot.tac"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
ebegin "Starting buildslave in ${BASEDIR}"
|
|
# We set HOME here to make something valid show up in the env of child
|
|
# processes spawned by the buildslave.
|
|
start-stop-daemon --start -u "${USERNAME}" \
|
|
--pidfile "${BASEDIR}/buildslave.pid" \
|
|
--env HOME="${BASEDIR}" \
|
|
--exec /usr/bin/python -- /usr/bin/twistd \
|
|
--no_save \
|
|
--logfile="${BASEDIR}/twistd.log" \
|
|
--pidfile="${BASEDIR}/buildslave.pid" \
|
|
--python="${BASEDIR}/buildbot.tac"
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping buildslave in ${BASEDIR}"
|
|
start-stop-daemon --stop --pidfile "${BASEDIR}/buildslave.pid"
|
|
eend $?
|
|
}
|