From 56518e03ec5c8e9cf24f9f56ce83bfc27ff32f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 4 Feb 2021 22:30:24 +0100 Subject: [PATCH] ansible.cfg: fix group name warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 2ab7875..d41630c 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -7,8 +7,10 @@ module_name = shell host_key_checking = false # human-readable stdout/stderr results display stdout_callback = debug +# Avoid default Python warnings +interpreter_python = auto # https://github.com/ansible/ansible/issues/56930 -force_valid_group_names = never +force_valid_group_names = ignore [privilege_escalation] become = true