From 99dddff8625388641b9dd84b0e87a55f5c13bc82 Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Wed, 24 Jan 2018 03:27:03 +0100 Subject: ffrl uplink and fastd split --- roles/configure_static_routes/tasks/fastd_tasks.yml | 14 ++++++++++++++ roles/configure_static_routes/tasks/main.yml | 21 ++++++++------------- 2 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 roles/configure_static_routes/tasks/fastd_tasks.yml (limited to 'roles/configure_static_routes/tasks') diff --git a/roles/configure_static_routes/tasks/fastd_tasks.yml b/roles/configure_static_routes/tasks/fastd_tasks.yml new file mode 100644 index 0000000..4cd1583 --- /dev/null +++ b/roles/configure_static_routes/tasks/fastd_tasks.yml @@ -0,0 +1,14 @@ +--- +- name: copy site specific iproute up config script + template: + src: ffmyk-iproute-up.j2 + dest: /usr/local/bin/ffmyk-iproute{{ item.name }}-up.sh + mode: 0744 + with_items: "{{ sites }}" + +- name: copy site specific iproute down config script + template: + src: ffmyk-iproute-down.j2 + dest: /usr/local/bin/ffmyk-iproute{{ item.name }}-down.sh + mode: 0744 + with_items: "{{ sites }}" diff --git a/roles/configure_static_routes/tasks/main.yml b/roles/configure_static_routes/tasks/main.yml index e89d845..e37b598 100644 --- a/roles/configure_static_routes/tasks/main.yml +++ b/roles/configure_static_routes/tasks/main.yml @@ -4,25 +4,20 @@ path: /etc/iproute2/rt_tables line: 42 ffmyk +- name: name ffrl routing table + lineinfile: + path: /etc/iproute2/rt_tables + line: 47 ffrl + when: "'ffrl_uplink' in group_names" + - name: copy ffmyk iproute config script copy: src: ffmyk-iproute.sh dest: /usr/local/bin/ffmyk-iproute.sh mode: 0744 -- name: copy site specific iproute up config script - template: - src: ffmyk-iproute-up.j2 - dest: /usr/local/bin/ffmyk-iproute{{ item.name }}-up.sh - mode: 0744 - with_items: "{{ sites }}" - -- name: copy site specific iproute down config script - template: - src: ffmyk-iproute-down.j2 - dest: /usr/local/bin/ffmyk-iproute{{ item.name }}-down.sh - mode: 0744 - with_items: "{{ sites }}" +- include_tasks: fastd_tasks.yml + when: "'fastd' in group_names" - name: copy ffmyk iproute systemd service copy: -- cgit v1.2.3-54-g00ecf