Skip to content

Instantly share code, notes, and snippets.

@estahn
Created May 1, 2017 14:09
Show Gist options
  • Select an option

  • Save estahn/88713c68f9b288f2113e33c5e1d795a3 to your computer and use it in GitHub Desktop.

Select an option

Save estahn/88713c68f9b288f2113e33c5e1d795a3 to your computer and use it in GitHub Desktop.
allow_duplicates: yes
dependencies:
- { role: roleA, tasks: [1] }
---
- name: Play
hosts: localhost
connection: local
gather_facts: false
roles:
- { role: roleA, tasks: [1] }
- { role: roleB, name: two }
---
- debug:
msg: "{{ role_name }} test1 name={{ name | default('N/A') }}"
---
- debug:
msg: "{{ role_name }} test2 name={{ name | default('N/A') }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment