diff --git a/lib/ansible/galaxy/role.py b/lib/ansible/galaxy/role.py index a375210172..a3498c5e64 100644 --- a/lib/ansible/galaxy/role.py +++ b/lib/ansible/galaxy/role.py @@ -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)