diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2016-08-10 19:23:39 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2016-08-10 19:24:35 -0700 |
commit | f02a962ac82d910fc293795721bca2368ac0028c (patch) | |
tree | 7fcc4455924d7b686e601848b5df06e8987bd277 /dev-util/buildbot/files | |
parent | dev-python/dask: version bump. (diff) | |
download | gentoo-f02a962ac82d910fc293795721bca2368ac0028c.tar.gz gentoo-f02a962ac82d910fc293795721bca2368ac0028c.tar.bz2 gentoo-f02a962ac82d910fc293795721bca2368ac0028c.zip |
dev-util/buildbot: Update the 0.9.0_rc1 and 9999 versions with changes made in 0.8.12-r2
Clean up the files/ directory, remove the no longer needed .9 versions of the files.
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-util/buildbot/files')
-rw-r--r-- | dev-util/buildbot/files/buildbot9.service | 14 | ||||
-rw-r--r-- | dev-util/buildbot/files/buildmaster.confd.9 | 10 | ||||
-rw-r--r-- | dev-util/buildbot/files/buildmaster.initd.9 | 54 |
3 files changed, 0 insertions, 78 deletions
diff --git a/dev-util/buildbot/files/buildbot9.service b/dev-util/buildbot/files/buildbot9.service deleted file mode 100644 index 371d6e086de9..000000000000 --- a/dev-util/buildbot/files/buildbot9.service +++ /dev/null @@ -1,14 +0,0 @@ -[Unit] -Description=buildbot master daemon -After=local-fs.target network.target - -[Service] -Type=forking -User=buildbot -WorkingDirectory=/var/lib/buildmaster -ExecStartPre=/usr/bin/buildbot checkconfig /var/lib/buildmaster -ExecStart=/usr/bin/buildbot start /var/lib/buildmaster -ExecStop=/usr/bin/buildbot stop /var/lib/buildmaster - -[Install] -WantedBy=multi-user.target diff --git a/dev-util/buildbot/files/buildmaster.confd.9 b/dev-util/buildbot/files/buildmaster.confd.9 deleted file mode 100644 index e489d66f9d4b..000000000000 --- a/dev-util/buildbot/files/buildmaster.confd.9 +++ /dev/null @@ -1,10 +0,0 @@ - -# Path to the build master's basedir. -BASEDIR=/var/lib/buildmaster - -# User account for the buildmaster. -# The basedir should be owned by this user. -USERNAME=buildbot - -# Extra options to pass to twistd. -TWISTD_OPTS="" diff --git a/dev-util/buildbot/files/buildmaster.initd.9 b/dev-util/buildbot/files/buildmaster.initd.9 deleted file mode 100644 index d146bff6c926..000000000000 --- a/dev-util/buildbot/files/buildmaster.initd.9 +++ /dev/null @@ -1,54 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -extra_started_commands="reload" - -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 buildmaster in ${BASEDIR}" - start-stop-daemon --start -u "${USERNAME}" \ - --pidfile "${BASEDIR}/buildmaster.pid" \ - --exec /usr/bin/twistd -- \ - --no_save \ - --logfile="${BASEDIR}/twistd.log" \ - --pidfile="${BASEDIR}/buildmaster.pid" \ - --python="${BASEDIR}/buildbot.tac" - eend $? -} - -stop() { - ebegin "Stopping buildmaster in ${BASEDIR}" - start-stop-daemon --stop --pidfile "${BASEDIR}/buildmaster.pid" - eend $? -} - -reload() { - ebegin "Reconfiguring buildmaster in ${BASEDIR}" - start-stop-daemon --signal HUP --pidfile \ - "${BASEDIR}"/buildmaster.pid - eend $? -} |