Chris Hammer aebaa0d348
Some checks failed
continuous-integration/drone/push Build is failing
initial drone build test
2023-12-16 01:19:54 -05:00

15 lines
240 B
YAML

---
- name: Test the role provided in extra_vars
hosts: all
become: false
gather_facts: true
tasks:
- name: Include role to test
ansible.builtin.include_role:
name: "{{ __test_role | default('testing') }}"
...