X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/f76b2b698d708dbef33a5135762b51a9c9d1d031..c2c3d05fa4a06e570fb7aab024ef92c35c11e530:/playall 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