X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/d4f185a99fd41f6927b3df2e80b1b24790242bd0..d472ee9713d21c5d718b320cc65cabe63aab0249:/playall

diff --git a/playall b/playall
index b4abf6b..8c74d96 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 -l "$HOST" "$@"
   echo
 done