summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-13 14:30:57 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-13 14:30:57 +0000
commit0979bb8915fb57eed8ed38258822176b7b8abf42 (patch)
tree79c5c6f25532754fe326a627ad6b2929041595c2 /dev-util/buildbot/files
parent* bump (diff)
downloadgentoo-2-0979bb8915fb57eed8ed38258822176b7b8abf42.tar.gz
gentoo-2-0979bb8915fb57eed8ed38258822176b7b8abf42.tar.bz2
gentoo-2-0979bb8915fb57eed8ed38258822176b7b8abf42.zip
Delete older, vulnerable ebuilds.
(Portage version: 14242-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/buildbot/files')
-rw-r--r--dev-util/buildbot/files/buildbot.initd48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-util/buildbot/files/buildbot.initd b/dev-util/buildbot/files/buildbot.initd
deleted file mode 100644
index bf11190b128f..000000000000
--- a/dev-util/buildbot/files/buildbot.initd
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/files/buildbot.initd,v 1.2 2006/11/02 20:03:49 marienz Exp $
-
-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 buildbot 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 -c "${USERNAME}" --quiet \
- --env HOME="${BASEDIR}" \
- --exec /usr/bin/twistd -- \
- --no_save \
- --logfile="${BASEDIR}/twistd.log" \
- --pidfile="${BASEDIR}/twistd.pid" \
- --python="${BASEDIR}/buildbot.tac"
- eend $?
-}
-
-stop() {
- ebegin "Stopping buildbot in ${BASEDIR}"
- start-stop-daemon --stop --quiet --pidfile "${BASEDIR}/twistd.pid"
- eend $?
-}