Update cluster-update

This commit is contained in:
Torma Kristóf 2019-04-02 22:28:15 +02:00 committed by GitHub
parent 5c0dd4cfd6
commit 69a33f8c93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -1 +1,13 @@
#!/bin/bash
WORKER_LIST="worker.list"
apt update
apt upgrade -y
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" < apt update
ssh $WORKERNAME -o "StrictHostKeyChecking no" "bash -s" < apt upgrade -y
echo "[worker:$WORKERNAME] Update is completed."
done