From: Ralf Jung Date: Sun, 20 May 2018 17:24:22 +0000 (+0200) Subject: fix playall to site.yml, now that that's the only playbook X-Git-Url: https://git.ralfj.de/ansible.git/commitdiff_plain/68b85d5c34dfe3eb4694775dd91754e9e6af5cd4 fix playall to site.yml, now that that's the only playbook --- diff --git a/playall b/playall index 8c74d96..8203a0f 100755 --- a/playall +++ b/playall @@ -3,6 +3,6 @@ set -e for HOST in $(fgrep 'all:' hosts | sed 's/.*all: *//g'); do echo "Playing on $HOST" - ansible-playbook -l "$HOST" "$@" + ansible-playbook site.yml -l "$HOST" "$@" echo done