mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
530 B
YAML
22 lines
530 B
YAML
4 years ago
|
- 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
|