You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
973 B
YAML
39 lines
973 B
YAML
7 years ago
|
---
|
||
|
- name: name ffmyk routing table
|
||
|
lineinfile:
|
||
|
path: /etc/iproute2/rt_tables
|
||
|
line: 42 ffmyk
|
||
|
|
||
|
- 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 }}"
|
||
|
|
||
|
- name: copy ffmyk iproute systemd service
|
||
|
copy:
|
||
|
src: ffmyk-iproute.service
|
||
|
dest: /etc/systemd/system/ffmyk-iproute.service
|
||
|
mode: 0444
|
||
|
|
||
|
- name: start and enable ffmyk iproute service
|
||
|
systemd:
|
||
|
name: ffmyk-iproute.service
|
||
|
daemon_reload: yes
|
||
|
enabled: yes
|
||
|
state: started
|