summaryrefslogtreecommitdiff
path: root/dev-util/buildbot-worker/files
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/buildbot-worker/files')
-rw-r--r--dev-util/buildbot-worker/files/buildbot_worker.confd9
-rw-r--r--dev-util/buildbot-worker/files/buildbot_worker.initd48
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-util/buildbot-worker/files/buildbot_worker.confd b/dev-util/buildbot-worker/files/buildbot_worker.confd
deleted file mode 100644
index 7e77999cf0c8..000000000000
--- a/dev-util/buildbot-worker/files/buildbot_worker.confd
+++ /dev/null
@@ -1,9 +0,0 @@
-# Path to the build slave's basedir.
-BASEDIR="/var/lib/buildbot_worker"
-
-# User account for the buildslave.
-# The basedir should be owned by this user.
-USERNAME="buildbot"
-
-# Extra options passed to twistd.
-TWISTD_OPTS=""
diff --git a/dev-util/buildbot-worker/files/buildbot_worker.initd b/dev-util/buildbot-worker/files/buildbot_worker.initd
deleted file mode 100644
index 8b13460491e4..000000000000
--- a/dev-util/buildbot-worker/files/buildbot_worker.initd
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 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}/buildbot_worker.pid" \
- --env HOME="${BASEDIR}" \
- --exec /usr/bin/twistd -- \
- --no_save \
- --logfile="${BASEDIR}/twistd.log" \
- --pidfile="${BASEDIR}/buildbot_worker.pid" \
- --python="${BASEDIR}/buildbot.tac"
- eend $?
-}
-
-stop() {
- ebegin "Stopping buildslave in ${BASEDIR}"
- start-stop-daemon --stop --pidfile "${BASEDIR}/buildbot_worker.pid"
- eend $?
-}