mirror of https://github.com/ansible/ansible.git
ansible-pull: Run All Playbooks When Multiple Are Supplied (#73172)
* ansible-pull: run all playbooks when multiple are supplied * add test for ansible-pull with multiple playbooks supplied from cli * add changelog fragmentpull/73497/head
parent
0279d02980
commit
4add723107
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- ansible-pull - Run all playbooks that when multiple are supplied via the command line (https://github.com/ansible/ansible/issues/72708)
|
@ -0,0 +1,6 @@
|
||||
- name: test multiple playbooks for ansible-pull
|
||||
hosts: all
|
||||
gather_facts: False
|
||||
tasks:
|
||||
- name: debug output
|
||||
debug: msg="test multi_play_1"
|
@ -0,0 +1,6 @@
|
||||
- name: test multiple playbooks for ansible-pull
|
||||
hosts: all
|
||||
gather_facts: False
|
||||
tasks:
|
||||
- name: debug output
|
||||
debug: msg="test multi_play_2"
|
Loading…
Reference in New Issue