diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-10 11:02:11 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-10 11:29:34 +0200 |
commit | 55fd9026b672e510ec13a9041f12b1d1b45c5ed1 (patch) | |
tree | ba85553ce279de94c284e90188f3a8bfbda443f9 | |
parent | afd1bc3ae35acc5871a02ec07f1ac71a47c6fb43 (diff) | |
download | jenkins.debian.net-55fd9026b672e510ec13a9041f12b1d1b45c5ed1.tar.xz |
reproducible: maintenance: the process killing part seems sane, enabling the actual auto-killing now
-rwxr-xr-x | bin/reproducible_maintenance.sh | 5 |
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 |