blob: 05c1a10104e8561b04dbf7b2f597515bbf87d4f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
extra_stopped_commands="create"
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 buildmaster in ${BASEDIR}"
start-stop-daemon --start -u "${USERNAME}" \
--pidfile "${BASEDIR}/buildmaster.pid" \
--exec /usr/bin/python -- /usr/bin/twistd \
--no_save \
--logfile="${BASEDIR}/twistd.log" \
--pidfile="${BASEDIR}/buildmaster.pid" \
--python="${BASEDIR}/buildbot.tac"
eend $?
}
stop() {
ebegin "Stopping buildmaster in ${BASEDIR}"
start-stop-daemon --stop --pidfile "${BASEDIR}/buildmaster.pid"
eend $?
}
reload() {
ebegin "Reconfiguring buildmaster in ${BASEDIR}"
start-stop-daemon --signal HUP --pidfile \
"${BASEDIR}"/buildmaster.pid
eend $?
}
create() {
if [ -e "${BASEDIR}"/buildbot.tac -o -e "${BASEDIR}"/master.cfg ]; then
eerror "${BASEDIR} already contains buildbot.tac or master.cfg"
return 1
fi
ebegin "Creating buildmaster in ${BASEDIR}"
start-stop-daemon -u "${USERNAME}" \
--exec /usr/bin/buildbot \
-- create-master -r "${BASEDIR}"
mv "${BASEDIR}"/master.cfg.sample "${BASEDIR}"/master.cfg
ewarn "Remember to customize exemplary master.cfg in ${BASEDIR}"
eend $?
}
|