mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
36 lines
1.2 KiB
Bash
Executable file
36 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Setup of buildbot configuration. Package installation is being done by
|
|
# Vagrantfile
|
|
# Dependencies: buildbot, buildbot-slave, supervisor
|
|
|
|
USER=$1
|
|
CFG_PATH=$2
|
|
BUILDBOT_PATH="/data/buildbot"
|
|
DOCKER_PATH="/data/docker"
|
|
SLAVE_NAME="buildworker"
|
|
SLAVE_SOCKET="localhost:9989"
|
|
BUILDBOT_PWD="pass-docker"
|
|
export PATH="/bin:sbin:/usr/bin:/usr/sbin:/usr/local/bin"
|
|
|
|
function run { su $USER -c "$1"; }
|
|
|
|
# Exit if buildbot has already been installed
|
|
[ -d "$BUILDBOT_PATH" ] && exit 0
|
|
|
|
# Setup buildbot
|
|
run "mkdir -p $BUILDBOT_PATH"
|
|
cd $BUILDBOT_PATH
|
|
run "buildbot create-master master"
|
|
run "cp $CFG_PATH/master.cfg master"
|
|
run "sed -i -E 's#(DOCKER_PATH = ).+#\1\"$DOCKER_PATH\"#' master/master.cfg"
|
|
run "buildslave create-slave slave $SLAVE_SOCKET $SLAVE_NAME $BUILDBOT_PWD"
|
|
|
|
# Allow buildbot subprocesses (docker tests) to properly run in containers,
|
|
# in particular with docker -u
|
|
run "sed -i 's/^umask = None/umask = 000/' slave/buildbot.tac"
|
|
|
|
# Setup supervisor
|
|
cp $CFG_PATH/buildbot.conf /etc/supervisor/conf.d/buildbot.conf
|
|
sed -i -E "s/^chmod=0700.+/chmod=0770\nchown=root:$USER/" /etc/supervisor/supervisord.conf
|
|
kill -HUP $(pgrep -f "/usr/bin/python /usr/bin/supervisord")
|