From 02653f7e7c2ce945ad8d11f1b4c2aeb394bfc450 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 19 Sep 2019 19:24:10 -0500 Subject: [PATCH] ansible.cfg: Disable stupid group name warning For some reason, Ansible developers felt like it was important that users name their host groups according to Python identifier naming conventions. This prevents, among other things, hyphens from being used in group names. Luckily, this ridiculous behavior is configurable. --- ansible.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible.cfg b/ansible.cfg index c3ce1b8..81ca7dc 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -7,4 +7,6 @@ gathering = smart fact_caching = jsonfile fact_caching_connection = .fact-cache +force_valid_group_names = ignore + remote_tmp = /var/tmp