Changeset - c8360d089cfd
[Not reviewed]
0 1 0
x - 1 day ago 2025-08-23 23:56:31
xbr@c3l.lu
fix: iproute2 default config moved to /usr/share/ in Debian 13
1 file changed with 12 insertions and 0 deletions:
0 comments (0 inline, 0 general)
gateway/initial_gw_setup.yml
Show inline comments
 
@@ -72,12 +72,24 @@
 
      ansible.builtin.service:
 
        name: "systemd-resolved"
 
        state: "started"
 
        enabled: "true"
 
      tags: config
 

	
 
    - name: Ensure /etc/iproute2 exists
 
      ansible.builtin.file:
 
        path: /etc/iproute2
 
        state: directory
 
        mode: '0755'
 
      tags: config
 
    - name: Copy routing table if non-existing
 
      ansible.builtin.copy:
 
        src: /usr/share/iproute2/rt_tables
 
        dest: /etc/iptables2/rt_tables
 
        force: false
 
      tags: config
 
    - name: Add the routing table for freifunk
 
      ansible.builtin.blockinfile:
 
        path: /etc/iproute2/rt_tables
 
        backup: true
 
        block: |
 
          # freifunk
0 comments (0 inline, 0 general)