summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarien Zwart <marienz@gentoo.org>2006-11-02 20:03:49 +0000
committerMarien Zwart <marienz@gentoo.org>2006-11-02 20:03:49 +0000
commit2034c0b3c72a9f3823794b614bb084dabf6c86e8 (patch)
tree57a1f2e1c36ee0699358ab3c3c417bf777aeb226 /dev-util/buildbot
parentAdded new revision for testing which uses the brand-spankin-new games-mods.ec... (diff)
downloadgentoo-2-2034c0b3c72a9f3823794b614bb084dabf6c86e8.tar.gz
gentoo-2-2034c0b3c72a9f3823794b614bb084dabf6c86e8.tar.bz2
gentoo-2-2034c0b3c72a9f3823794b614bb084dabf6c86e8.zip
Do not say "buildslave" in the buildmaster startup script. Spotted by jhmartin@toger.us (bug #153835).
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'dev-util/buildbot')
-rw-r--r--dev-util/buildbot/ChangeLog6
-rw-r--r--dev-util/buildbot/files/buildbot.initd6
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-util/buildbot/ChangeLog b/dev-util/buildbot/ChangeLog
index a7543f7316ec..f6ade06ea75a 100644
--- a/dev-util/buildbot/ChangeLog
+++ b/dev-util/buildbot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.3 2006/10/31 01:04:42 marienz Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.4 2006/11/02 20:03:49 marienz Exp $
+
+ 02 Nov 2006; Marien Zwart <marienz@gentoo.org> files/buildbot.initd:
+ Do not say "buildslave" in the buildmaster startup script. Spotted by
+ jhmartin@toger.us (bug #153835).
31 Oct 2006; Marien Zwart <marienz@gentoo.org> buildbot-0.7.4.ebuild:
Add test USE flag and ~amd64 keyword.
diff --git a/dev-util/buildbot/files/buildbot.initd b/dev-util/buildbot/files/buildbot.initd
index 26fe8b7902bc..bf11190b128f 100644
--- a/dev-util/buildbot/files/buildbot.initd
+++ b/dev-util/buildbot/files/buildbot.initd
@@ -1,7 +1,7 @@
#!/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.1 2006/09/25 17:42:37 marienz Exp $
+# $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
@@ -28,7 +28,7 @@ checkconfig() {
start() {
checkconfig || return 1
- ebegin "Starting buildslave in ${BASEDIR}"
+ 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 \
@@ -42,7 +42,7 @@ start() {
}
stop() {
- ebegin "Stopping buildslave in ${BASEDIR}"
+ ebegin "Stopping buildbot in ${BASEDIR}"
start-stop-daemon --stop --quiet --pidfile "${BASEDIR}/twistd.pid"
eend $?
}