filter plugins: Fix group names for - vs _

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2019-05-22 00:09:09 +00:00
parent ea7f0ce02f
commit 12fbe24a16
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def invert_fedmsg_policy(groups, vars, env):
"""
if env == 'staging':
hosts = groups['all'] + groups['staging'] + groups['fedmsg-qa-network-stg'] + groups['openshift-pseudohosts-stg']
hosts = groups['all'] + groups['staging'] + groups['fedmsg_qa_network_stg'] + groups['openshift_pseudohosts_stg']
else:
hosts = [h for h in groups['all'] if h not in groups['staging'] + groups['openshift_pseudohosts_stg']]