X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/d4f185a99fd41f6927b3df2e80b1b24790242bd0..e103cc2f91aa9efc164969bdc146ff87f8cff276:/playall diff --git a/playall b/playall index b4abf6b..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 --diff -l "$HOST" "$@" + ansible-playbook site.yml -l "$HOST" "$@" echo done