summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_slay.sh
blob: 922bea277b62c4c7c94bf72da064d07683f282dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

# Copyright 2015 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2

set -e

# usually called by /srv/jenkins/bin/reproducible_cleanup_nodes.sh
# this script just kills everyone…
sudo slay -clean 1111
sudo slay -clean 2222
sleep 2
ps fax
# only slay jenkins on the build nodes…
if [ "$HOSTNAME" != "jenkins" ] ; then
	sudo slay -clean jenkins
fi