Commit f814e4e4 by Michael DeHaan

Verify playbook includes can take params.

parent a1e4f826
- include: test_includes2.yml
- include: test_includes2.yml parameter1=asdf parameter2=jkl
- hosts: testhost
- name: verify playbook includes can take parameters
hosts: testhost
tasks:
- assert:
that:
- "parameter1 == 'asdf'"
- "parameter2 == 'jkl'"
- name: verify task include logic
hosts: testhost
gather_facts: True
roles:
- { role: test_includes, tags: test_includes }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment