make --diff the default
[ansible.git] / playall
diff --git a/playall b/playall
index b4abf6b3be257100117e8176abafb72c20727650..8c74d962a9f041324f01b25388d9c8063ef52153 100755 (executable)
--- 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