mirror of
https://gitea.0xace.cc/ansible-galaxy/network.git
synced 2024-11-24 22:36:38 +00:00
14 lines
339 B
YAML
14 lines
339 B
YAML
---
|
|
- 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 for {{ ansible_os_family }}
|
|
include_tasks: "{{ ansible_facts['os_family'] }}/main.yaml"
|