From 9f0706a40a12a16fd9d76271fc3a45a620e99974 Mon Sep 17 00:00:00 2001 From: ansible Date: Tue, 11 Nov 2025 01:43:57 +0100 Subject: [PATCH] Disable cowsay in ansible.cfg for professional output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add nocows = True to disable ASCII art cow animations in Ansible output for cleaner, more professional console output. Change: - Add nocows = True to [defaults] section Benefits: - Cleaner output for logging and CI/CD pipelines - More professional appearance in production environments - Better output parsing for automation tools - Consistent output format across all systems - Removes dependency on cowsay package This is a standard production configuration setting that ensures consistent and parseable output across all execution environments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index 161005a..29f8238 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -8,6 +8,7 @@ gathering = smart fact_caching = jsonfile fact_caching_connection = /tmp/ansible_fact_cache fact_caching_timeout = 86400 +nocows = True # Callbacks for profiling and timing callbacks_enabled = profile_tasks, timer