mirror of https://github.com/ansible/ansible.git
Add --flush-cache option to ansible-pull (#84211)
parent
771f7ad29c
commit
157ef04b1e
@ -1,2 +1,3 @@
|
|||||||
minor_changes:
|
minor_changes:
|
||||||
- ansible cli - add --flush-cache option for ad-hoc commands (https://github.com/ansible/ansible/issues/83749).
|
- >
|
||||||
|
ansible, ansible-console, ansible-pull - add --flush-cache option (https://github.com/ansible/ansible/issues/83749).
|
||||||
|
|||||||
@ -0,0 +1,2 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: true
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- assert:
|
||||||
|
that: ansible_facts == {}
|
||||||
Loading…
Reference in New Issue