For container enabled role, display warning only when not ANSIBLE_CONTAINER (#18717)

pull/18718/head
Chris Houseknecht 8 years ago committed by GitHub
parent a252d71573
commit 599e016315

@ -212,8 +212,8 @@ class GalaxyRole(object):
if not role_data:
raise AnsibleError("- sorry, %s was not found on %s." % (self.src, api.api_server))
if role_data.get('role_type') == 'CON':
# Container Enabled
if role_data.get('role_type') == 'CON' and not os.environ.get('ANSIBLE_CONTAINER'):
# Container Enabled, running outside of a container
display.warning("%s is a Container Enabled role and should only be installed using "
"Ansible Container" % self.name)

Loading…
Cancel
Save