diff options
author | Marien Zwart <marienz@gentoo.org> | 2006-11-02 20:03:49 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2006-11-02 20:03:49 +0000 |
commit | 2034c0b3c72a9f3823794b614bb084dabf6c86e8 (patch) | |
tree | 57a1f2e1c36ee0699358ab3c3c417bf777aeb226 /dev-util/buildbot/files | |
parent | Added new revision for testing which uses the brand-spankin-new games-mods.ec... (diff) | |
download | gentoo-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/files')
-rw-r--r-- | dev-util/buildbot/files/buildbot.initd | 6 |
1 files changed, 3 insertions, 3 deletions
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 $? } |