mirror of https://github.com/ansible/ansible.git
* Fix debug factsetter (#74067)
* prevent debug from setting namespaced facts as tlv
* also added tests
(cherry picked from commit f9f839fa08
)
* Update debug_dont_set_facts.yml
Co-authored-by: Rick Elrod <rick@elrod.me>
pull/74169/head
parent
40543aa8db
commit
adae63e053
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- debug action - prevent setting facts when displaying ansible_facts (https://github.com/ansible/ansible/issues/74060).
|
@ -0,0 +1,21 @@
|
||||
- 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
|
Loading…
Reference in New Issue