diff --git a/tasks/main.yaml b/tasks/main.yaml new file mode 100644 index 0000000..7f836f4 --- /dev/null +++ b/tasks/main.yaml @@ -0,0 +1,13 @@ +--- +- name: Set blank routes symbol + command: echo -n + register: echo + changed_when: false + +- name: Create array for interfaces to reload + set_fact: + reload_interfaces: [] + changed_when: false + +- name: Include interfaces configuration tasks + include: "{{ ansible_facts['os_family'] }}/{{ ansible_facts['distribution_major_version'] }}.yaml"