Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 262857 Details for
Bug 355347
new ebuild: buildbot-slave-0.8.3.ebuild
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
files/buildslave.initd
buildslave.initd (text/plain), 1.07 KB, created by
Edward "Hades"
on 2011-02-17 19:36:02 UTC
(
hide
)
Description:
files/buildslave.initd
Filename:
MIME Type:
Creator:
Edward "Hades"
Created:
2011-02-17 19:36:02 UTC
Size:
1.07 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2010 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 > >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 buildslave 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}" \ > --env HOME="${BASEDIR}" \ > --exec /usr/bin/python -- /usr/bin/twistd \ > --no_save \ > --logfile="${BASEDIR}/twistd.log" \ > --pidfile="${BASEDIR}/buildslave.pid" \ > --python="${BASEDIR}/buildbot.tac" > eend $? >} > >stop() { > ebegin "Stopping buildslave in ${BASEDIR}" > start-stop-daemon --stop --pidfile "${BASEDIR}/buildslave.pid" > eend $? >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 355347
:
262853
|
262855
| 262857