From a8f9aa641dbb760c44c2c79df68f33cd9b0e4480 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 3 Apr 2018 11:56:34 -0400 Subject: [PATCH] Create run-one-role.yml --- run-one-role.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 run-one-role.yml 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'] }