Gentoo Logo
Gentoo Spaceship




Note: Due to technical difficulties, the Archives are currently not up to date. GMANE provides an alternative service for most mailing lists.
c.f. bug 424647
List Archive: gentoo-commits
Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Headers:
To: gentoo-commits@g.o
From: "Ali Polatel (hawking)" <hawking@g.o>
Subject: gentoo-x86 commit in dev-util/buildbot/files: buildbot.initd-r1
Date: Tue, 27 May 2008 18:02:48 +0000
hawking     08/05/27 18:02:48

  Added:                buildbot.initd-r1
  Log:
  Revision bump. Fixed initscript #223853.
  (Portage version: 2.1.5.2)

Revision  Changes    Path
1.1                  dev-util/buildbot/files/buildbot.initd-r1

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/files/buildbot.initd-r1?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/files/buildbot.initd-r1?rev=1.1&content-type=text/plain

Index: buildbot.initd-r1
===================================================================
#!/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-r1,v 1.1 2008/05/27 18:02:47 hawking 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/python -- /usr/bin/twistd \
		--no_save \
		--logfile="${BASEDIR}/twistd.log" \
		--pidfile="${BASEDIR}/@buildbot@.pid" \
		--python="${BASEDIR}/buildbot.tac"
	eend $?
}

stop() {
	ebegin "Stopping @buildbot@ in ${BASEDIR}"
	start-stop-daemon --stop --quiet --pidfile "${BASEDIR}/@buildbot@.pid"
	eend $?
}



-- 
gentoo-commits@g.o mailing list


Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Previous by thread:
gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.7-r1.ebuild
Next by thread:
gentoo-x86 commit in dev-php5/pecl-apc: ChangeLog pecl-apc-3.0.19.ebuild
Previous by date:
gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.7-r1.ebuild
Next by date:
gentoo-x86 commit in dev-php5/pecl-apc: ChangeLog pecl-apc-3.0.19.ebuild


Updated Jan 26, 2011

Summary: Archive of the gentoo-commits mailing list.

Donate to support our development efforts.

Copyright 2001-2013 Gentoo Foundation, Inc. Questions, Comments? Contact us.