Ensure we don't overwrite roles from include/import_role when loading the play (#47512)

* Ensure we don't overwrite roles from include/import_role when loading the play. Fixes #47454

* Add changelog fragment
This commit is contained in:
Matt Martz
2018-10-23 11:08:48 -05:00
committed by GitHub
parent e1c2dd383a
commit d5e4f37ca0
5 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
- hosts: localhost
gather_facts: false
roles:
- call_import

View File

@@ -0,0 +1,6 @@
- import_role:
name: regular
- assert:
that:
- regular_defaults_var is defined

View File

@@ -82,3 +82,4 @@ test "$(grep -c '"item=foo"' test_include_dupe_loop.out)" = 3
ansible-playbook public_exposure/playbook.yml -i ../../inventory "$@"
ansible-playbook public_exposure/no_bleeding.yml -i ../../inventory "$@"
ansible-playbook public_exposure/no_overwrite_roles.yml -i ../../inventory "$@"