From 347ec0d90360134589e067f25e70eae95f7f1a5c Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Mon, 2 Nov 2020 18:09:55 +0200 Subject: [PATCH] Do not warn about incorrect group naming Since ansible 2.8 dashes and other symbols (except undersocre) should not be used in ansible group names. Until we did resilent migration of group names to the new format we can just silence warnings during openstack-ansible execution. Change-Id: I5736b45172db9938174cce4f0d0c8830e8b8cdf1 --- scripts/openstack-ansible.rc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/openstack-ansible.rc b/scripts/openstack-ansible.rc index 1b4f809649..f08e7761f6 100644 --- a/scripts/openstack-ansible.rc +++ b/scripts/openstack-ansible.rc @@ -60,3 +60,5 @@ export ANSIBLE_CONNECTION_PLUGINS="${ANSIBLE_CONNECTION_PLUGINS:-/etc/ansible/ro export ANSIBLE_FORCE_HANDLERS="${ANSIBLE_FORCE_HANDLERS:-True}" export ANSIBLE_PYTHON_INTERPRETER="${ANSIBLE_PYTHON_INTERPRETER:-OSA_ANSIBLE_PYTHON_INTERPRETER}" + +export ANSIBLE_TRANSFORM_INVALID_GROUP_CHARS="${ANSIBLE_TRANSFORM_INVALID_GROUP_CHARS:-ignore}"