diff --git a/run-one-role.yml b/run-one-role.yml new file mode 100644 index 000000000..e1ae27c2f --- /dev/null +++ b/run-one-role.yml @@ -0,0 +1,13 @@ +--- +- hosts: all + become: yes + + vars_files: + - vars/default_vars.yml + - vars/{{ ansible_local.local_facts.os_ver }}.yml + - vars/local_vars.yml + - /etc/iiab/config_vars.yml + + roles: + - { role: 0-init, tags: ['0-init'] } + - { role: "{{ role_to_run }}", tags: ['run'] }