/etc/init.d/buildmaster is in buildbot 0.8.9-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/bin/bash
### Maintain compatibility with chkconfig
# chkconfig: 2345 83 17
# description: buildmaster
### BEGIN INIT INFO
# Provides: buildmaster
# 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 buildmaster configuration
[[ -r /etc/default/buildmaster ]] && . /etc/default/buildmaster
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 buildmaster 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 "buildmaster #${i}: invalid enabled status"
errors=$(($errors+1))
fi
if [[ -z ${MASTER_NAME[$index]} ]]; then
log_failure_msg "buildmaster #${i}: no name"
errors=$(($errors+1))
fi
if [[ -z ${MASTER_USER[$index]} ]]; then
log_failure_msg "buildmaster #${i}: no run user specified"
errors=$( ($errors+1) )
elif ! getent passwd ${MASTER_USER[$index]} >/dev/null; then
log_failure_msg "buildmaster #${i}: unknown user ${MASTER_USER[$index]}"
errors=$(($errors+1))
fi
if [[ ! -d "${MASTER_BASEDIR[$index]}" ]]; then
log_failure_msg "buildmaster ${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" | tr -d ' ' | 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 "buildmaster #${i}: disabled"
continue
fi
master_config_valid $i
errors=$(($errors+$?))
done
[[ $errors == 0 ]]; return $?
}
check_config || exit $?
function iscallable () { type $1 2>/dev/null | grep -q 'shell function'; }
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
# Some rhels don't come with all the lsb goodies
if iscallable log_daemon_msg; then
log_daemon_msg "$3 \"${MASTER_NAME[$i]}\""
if eval $1 $2 $i; then
log_end_msg 0
else
log_end_msg 1
errors=$(($errors+1))
fi
else
if eval $1 $2 $i; then
log_success_msg "$3 \"${MASTER_NAME[$i]}\""
else
log_failure_msg "$3 \"${MASTER_NAME[$i]}\""
errors=$(($errors+1))
fi
fi
done
return $errors
}
case "$1" in
start)
do_op "master_op" "start" "Starting buildmaster" "$2"
exit $?
;;
stop)
do_op "master_op" "stop" "Stopping buildmaster" "$2"
exit $?
;;
reload)
do_op "master_op" "reconfig" "Reloading buildmaster" "$2"
exit $?
;;
restart|force-reload)
do_op "master_op" "restart" "Restarting buildmaster" "$2"
exit $?
;;
upgrade)
do_op "master_op" "upgrade-master" "Upgrading buildmaster" "$2"
exit $?
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload|upgrade}"
exit 1
;;
esac
exit 0
|