From 114d5c268964e1aceadcabb3e15c5231a6fcb98f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Wed, 12 Mar 2014 10:46:41 +0100 Subject: [PATCH] Ability to reduce verbosity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you don't want to see the output of all the skipped host, you can set this value to 'False'. This will dramatically reduce the output of the run. Closes: #32 Signed-off-by: Sébastien Han --- .ansible.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ansible.cfg b/.ansible.cfg index e67d7edfe..f3c0a80d7 100644 --- a/.ansible.cfg +++ b/.ansible.cfg @@ -6,3 +6,5 @@ ansible_managed = Ansible managed: modified on %Y-%m-%d %H:%M:%S by {uid} private_key_file = ~/.vagrant.d/insecure_private_key error_on_undefined_vars = False forks = 6 +#If set to False, ansible will not display any status for a task that is skipped. The default behavior is to display skipped tasks: +display_skipped_hosts=True