diff options
Diffstat (limited to 'bin/reproducible_slay.sh')
-rwxr-xr-x | bin/reproducible_slay.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/reproducible_slay.sh b/bin/reproducible_slay.sh new file mode 100755 index 00000000..922bea27 --- /dev/null +++ b/bin/reproducible_slay.sh @@ -0,0 +1,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 + |