summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintenance.sh
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-10 11:02:11 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-10 11:29:34 +0200
commit55fd9026b672e510ec13a9041f12b1d1b45c5ed1 (patch)
treeba85553ce279de94c284e90188f3a8bfbda443f9 /bin/reproducible_maintenance.sh
parentafd1bc3ae35acc5871a02ec07f1ac71a47c6fb43 (diff)
downloadjenkins.debian.net-55fd9026b672e510ec13a9041f12b1d1b45c5ed1.tar.xz
reproducible: maintenance: the process killing part seems sane, enabling the actual auto-killing now
Diffstat (limited to 'bin/reproducible_maintenance.sh')
-rwxr-xr-xbin/reproducible_maintenance.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh
index aa17eade..ea535e86 100755
--- a/bin/reproducible_maintenance.sh
+++ b/bin/reproducible_maintenance.sh
@@ -112,10 +112,9 @@ if [ -s $RESULT ] ; then
ps -F -p $PSCALL
echo
for PROCESS in $(cat $TOKILL) ; do
- echo sudo kill -9 $PROCESS 2>&1
- #echo "'kill -9 $PROCESS' done." # FIXME re-enable once we're sure this new code is fine
+ sudo kill -9 $PROCESS 2>&1
+ echo "'kill -9 $PROCESS' done."
done
- echo "Please kill processes manually for now."
echo
fi
fi