Skip to content

Commit

Permalink
bootstrapping fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Oct 6, 2023
1 parent 3c89211 commit 99f8ed4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/debian_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
sysctl_set: yes
state: present
reload: yes
with_dict: "{{ NW_HC.sysctl.forwarding.enable | bool }}"
with_dict: "{{ NW_HC.sysctl.forwarding.enable }}"
when: NW.support.traffic_forwarding
tags: routing

Expand All @@ -138,7 +138,7 @@
sysctl_set: yes
state: present
reload: yes
with_dict: "{{ NW_HC.sysctl.ipv6.enable | bool }}"
with_dict: "{{ NW_HC.sysctl.ipv6.enable }}"
when: NW.support.ipv6
tags: [routing, interfaces]

Expand Down
2 changes: 1 addition & 1 deletion templates/etc/network/interfaces.d/inc/vlan.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# vlan settings
# get the current bond-status via: 'cat /proc/net/vlan/{{ name }}'
# get the current vlan-status via: 'cat /proc/net/vlan/{{ name }}'
{% if name.find('.') == -1 %}
vlan-raw-device {{ iface.vlan-raw-device }} # if the int is a vlan but is not written in the INT.VID syntax - we'll need to define the parent-interface
{% endif %}

0 comments on commit 99f8ed4

Please sign in to comment.