blob: d20d67755e63e6259125d5330f1785644a2531e2 [file] [log] [blame]
Renato Golin94cc1042016-04-26 11:02:23 +01001#!/usr/bin/env bash
2
3if [[ $1 != 'start' && $1 != 'stop' ]]; then
4 echo "Syntax: $0 <start|stop> [bot-dir]"
5 exit -1
6fi
7ACTION=$1
8BOTDIR=/opt/buildbot
9if [[ $2 != '' ]]; then
10 BOTDIR=$2
11fi
12
13if [[ $ACTION = 'start' ]]; then
14 sudo -u buildbot buildslave stop $BOTDIR
15fi
16
17sudo -u buildbot buildslave $ACTION $BOTDIR