bunch of changes

This commit is contained in:
2019-04-02 23:45:31 +02:00
parent 61d418e9a0
commit 1447c964ec
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ for LINE in $(cat $WORKER_LIST | grep -vE "^#"); do
WORKERNAME=`echo $LINE | awk -F"/" '{print $NF}'`
echo "[worker:$WORKERNAME] Updating..."
ssh $WORKERNAME -o "StrictHostKeyChecking no" "bash -s" < ./update.sh
ssh $WORKERNAME -o "StrictHostKeyChecking no" "bash -s" < ./update/update.sh
echo "[worker:$WORKERNAME] Update is completed."
done