ansible/test/integration/targets/debug/nosetfacts.yml
Brian Coca f9f839fa08
Fix debug factsetter (#74067)
* prevent debug from setting namespaced facts as tlv
* also added tests
2021-03-31 09:30:09 -04:00

21 lines
530 B
YAML

- name: check we dont set facts with debug ansible_facts https://github.com/ansible/ansible/issues/74060
hosts: localhost
gather_facts: false
tasks:
- name: create namespaced non fact
set_fact:
ansible_facts:
nonfact: 1
- name: ensure nonfact does not exist
assert:
that:
- nonfact is not defined
- name: debug ansible_facts to create issue
debug: var=ansible_facts
- name: ensure nonfact STILL does not exist
assert:
that:
- nonfact is not defined