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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
#!/bin/bash
### Maintain compatibility with chkconfig
# chkconfig: 2345 83 17
# description: buildbot
### BEGIN INIT INFO
# Provides: buildbot
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Buildbot master init script
# Description: This file allows running buildbot master instances at
# startup
### END INIT INFO
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MASTER_RUNNER=/usr/bin/buildbot
. /lib/lsb/init-functions
# Source buildbot configuration
[[ -r /etc/default/buildbot ]] && . /etc/default/buildbot
# Or define/override the configuration here
#MASTER_ENABLED[1]=0 # 1-enabled, 0-disabled
#MASTER_NAME[1]="default" # short name printed on start/stop
#MASTER_USER[1]="buildbot" # user to run master as
#MASTER_BASEDIR[1]="/var/lib/buildbot/masters/default" # basedir to master (absolute path)
#MASTER_OPTIONS[1]="" # buildbot options
#MASTER_PREFIXCMD[1]="" # prefix command, i.e. nice, linux32, dchroot
if ! [ -x "$MASTER_RUNNER" ]; then
log_failure_msg "does not exist or not an executable file: ${MASTER_RUNNER}"
exit 1
fi
function is_enabled() {
ANSWER=`echo $1|tr "[:upper:]" "[:lower:]"`
[[ "$ANSWER" == "yes" ]] || [[ "$ANSWER" == "true" ]] || [[ "$ANSWER" == "1" ]]
return $?
}
function is_disabled() {
ANSWER=`echo $1|tr "[:upper:]" "[:lower:]"`
[[ "$ANSWER" == "no" ]] || [[ "$ANSWER" == "false" ]] || [[ "$ANSWER" == "0" ]]
return $?
}
function master_config_valid() {
# Function validates buildbot instance startup variables based on array
# index
local errors=0
local index=$1
if ! is_enabled "${MASTER_ENABLED[$index]}" && ! is_disabled "${MASTER_ENABLED[$index]}" ; then
log_warning_msg "buildbot #${i}: invalid enabled status"
errors=$(($errors+1))
fi
if [[ -z ${MASTER_NAME[$index]} ]]; then
log_failure_msg "buildbot #${i}: no name"
errors=$(($errors+1))
fi
if [[ -z ${MASTER_USER[$index]} ]]; then
log_failure_msg "buildbot #${i}: no run user specified"
errors=$( ($errors+1) )
elif ! getent passwd ${MASTER_USER[$index]} >/dev/null; then
log_failure_msg "buildbot #${i}: unknown user ${MASTER_USER[$index]}"
errors=$(($errors+1))
fi
if [[ ! -d "${MASTER_BASEDIR[$index]}" ]]; then
log_failure_msg "buildbot ${i}: basedir does not exist ${MASTER_BASEDIR[$index]}"
errors=$(($errors+1))
fi
return $errors
}
function check_config() {
itemcount="${#MASTER_ENABLED[@]}
${#MASTER_NAME[@]}
${#MASTER_USER[@]}
${#MASTER_BASEDIR[@]}
${#MASTER_OPTIONS[@]}
${#MASTER_PREFIXCMD[@]}"
if [[ $(echo "$itemcount" | grep -oE '[0-9]+' | sort -u | wc -l) -ne 1 ]]; then
log_failure_msg "MASTER_* arrays must have an equal number of elements!"
return 1
fi
errors=0
for i in $( seq ${#MASTER_ENABLED[@]} ); do
if is_disabled "${MASTER_ENABLED[$i]}" ; then
log_warning_msg "buildbot #${i}: disabled"
continue
fi
master_config_valid $i
errors=$(($errors+$?))
done
[[ $errors == 0 ]]; return $?
}
check_config || exit $?
function master_op () {
op=$1 ; mi=$2
${MASTER_PREFIXCMD[$mi]} \
su -s /bin/sh \
-c "$MASTER_RUNNER $op ${MASTER_OPTIONS[$mi]} ${MASTER_BASEDIR[$mi]} > /dev/null" \
- ${MASTER_USER[$mi]}
return $?
}
function do_op () {
errors=0
for i in $( seq ${#MASTER_ENABLED[@]} ); do
if [ -n "$4" ] && [ "$4" != "${MASTER_NAME[$i]}" ] ; then
continue
elif is_disabled "${MASTER_ENABLED[$i]}" && [ -z "$4" ] ; then
continue
fi
log_daemon_msg "$3 #$i: ${MASTER_NAME[$i]}"
if eval $1 $2 $i; then
log_end_msg 0
else
log_end_msg 1
errors=$(($errors+1))
fi
done
return $errors
}
function master_status () {
local errors=0
local name="$1"
for i in $( seq ${#MASTER_ENABLED[@]} ); do
if [ -n "$name" ] && [ "$name" != "${MASTER_NAME[$i]}" ] ; then
continue
elif is_disabled "${MASTER_ENABLED[$i]}" && [ -z "$name" ] ; then
continue
elif [ -z "${MASTER_BASEDIR[$i]}" ]; then
continue
fi
if kill -0 "$(cat ${MASTER_BASEDIR[$i]}/twistd.pid)" >/dev/null 2>&1; then
log_success_msg "buildbot #$i: $name is running"
else
log_failure_msg "buildbot #$i: $name is not running"
errors=$((errors + 1))
fi
done
return $errors
}
case "$1" in
start)
do_op "master_op" "start" "Starting buildbot" "$2"
exit $?
;;
stop)
do_op "master_op" "stop" "Stopping buildbot" "$2"
exit $?
;;
reload)
do_op "master_op" "reconfig" "Reloading buildbot" "$2"
exit $?
;;
restart|force-reload)
do_op "master_op" "restart" "Restarting buildbot" "$2"
exit $?
;;
upgrade)
do_op "master_op" "upgrade-master" "Upgrading buildbot" "$2"
exit $?
;;
status)
master_status "$2"
exit $?
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload|upgrade|status}"
exit 1
;;
esac
exit 0
|