blob: f6d50fcce41913dfb7cd9773d65b50f190d2b80a (
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
|
#!/bin/bash
# Copyright © 2015-2017 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2
DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
# common code defining db access
. /srv/jenkins/bin/reproducible_common.sh
# only run this on the main node as jenkins
if [ "$HOSTNAME" != "jenkins" ] ; then
echo "this script must only be run on the main node, aborting."
exit 1
elif [ "$(whoami)" != "jenkins" ] ; then
echo "this script must only be run as jenkins user, aborting."
exit 1
fi
# deny running this if build service is still running
SERVICE="reproducible_build@startup.service"
RESULT=$(systemctl show $SERVICE|grep ^ActiveState=active||true)
if [ -n "$RESULT" ] ; then
echo "$SERVICE is still running, aborting."
exit 1
else
echo "$SERVICE is not running, ok, let's go."
fi
# simple confirmation needed
echo
echo "Warning: running this will kill all processes by the 1111, 2222 and jenkins"
echo " users. Press return if you want this, else better press CTRL-C now."
echo
read
export JOB_NAME="cleanup_nodes"
for NODE in $BUILD_NODES ; do
# call jenkins_master_wrapper.sh so we only need to track different ssh ports in one place
# jenkins_master_wrapper.sh needs NODE_NAME and JOB_NAME
export NODE_NAME=$NODE
echo "$(date -u) - Killing build processes on $NODE in background now."
/srv/jenkins/bin/jenkins_master_wrapper.sh /srv/jenkins/bin/reproducible_slay.sh &
done
ps fax|grep sleep
echo "$(date -u) - slaughtering done."
|