X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/5cd5c0e1307b681a6785062c3c0fdcaf776ae55e..HEAD:/do-update diff --git a/do-update b/do-update deleted file mode 100755 index f99450c..0000000 --- a/do-update +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -cd "$(dirname "$(readlink -e "$0")")" -for HOST in "$@"; do - echo "Playing on $HOST" - ansible-playbook upgrade.yml -l "$HOST" - read -p "Do you want me to reboot? (y/N) " ANSWER - if [[ "$ANSWER" == y* ]]; then - ansible "$HOST" -a "shutdown -r +1" - fi - echo -done