mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
For container enabled role, display warning only when not ANSIBLE_CONTAINER (#18717)
This commit is contained in:
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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user