blob: 6822214d37b7ed7ce41fb6b0ce0cb7c60ac78a44 [file] [log] [blame]
#!/bin/bash
set -e
set -o pipefail
GENOMIX_PATH=`pwd`
for i in `cat conf/slaves`
do
ssh $i "cd ${GENOMIX_PATH}; bin/stopnc.sh" || { echo "Failed to stop slave $i"; } # don't stop killing the other jobs when we fail
done