]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ansible.cfg: set force_valid_group_names param
authorGuillaume Abrioux <gabrioux@redhat.com>
Thu, 24 Sep 2020 01:51:56 +0000 (03:51 +0200)
committerDimitri Savineau <savineau.dimitri@gmail.com>
Fri, 25 Sep 2020 15:12:39 +0000 (11:12 -0400)
As of 2.10, group names containing a dash are invalid.
However, setting this option makes it still possible to use a dash in
group names and prevent this warning to show up.
It might need to be definitely addressed in a future ansible release.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1880476
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 6938ed13021201cc1cfcd3f3087849fed3157a69)

ansible.cfg
infrastructure-playbooks/ansible.cfg

index b135b48fb980d2c34cf1f68f87ed5caf0f089d36..c579a576b41be9af1ae186d26b005f59e0db06f3 100644 (file)
@@ -20,6 +20,7 @@ fact_caching_timeout = 7200
 nocows = 1
 callback_whitelist = profile_tasks
 stdout_callback = yaml
+force_valid_group_names = ignore
 
 # Disable them in the context of https://review.openstack.org/#/c/469644
 retry_files_enabled = False
index 8d42b01c0edbf35e362e594a66f3e1e5bbc80df8..20373dc95a6f479dd28bbc6f7a0237ba3c2dfb2f 100644 (file)
@@ -3,3 +3,4 @@ ansible_managed = Please do not change this file directly since it is managed by
 action_plugins = ../plugins/actions
 callback_plugins = ../plugins/callback
 roles_path = ../roles
+force_valid_group_names = ignore
\ No newline at end of file