20 lines
565 B
YAML
20 lines
565 B
YAML
- name: Cop Network Config
|
|
ansible.builtin.template:
|
|
src: 01-ffrl-gre.yaml.j2
|
|
dest: /etc/netplan/01-ffrl-gre.yaml
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
register: networkconfig
|
|
|
|
- name: Netplan Apply
|
|
ansible.builtin.shell: netplan apply
|
|
when: networkconfig.changed
|
|
|
|
- name: Add Table 42 after netplan Apply
|
|
ansible.builtin.shell: /bin/ip rule add fwmark 0x4 table 42
|
|
when: networkconfig.changed
|
|
|
|
- name: Add Table 42v6 after netplan Apply
|
|
ansible.builtin.shell: /bin/ip -6 rule add fwmark 0x4 table 42
|
|
when: networkconfig.changed |