1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

br0 - single interface mis-detection

This commit is contained in:
Jerry Vonau 2017-11-09 12:21:57 -06:00
parent a622c2bf8e
commit 41033ba949

View file

@ -144,12 +144,12 @@
- name: 2 or more devices on the LAN - use bridging
set_fact:
iiab_lan_iface: br0
when: num_lan_interfaces >= 2 and not is_rpi
when: num_lan_interfaces|int >= 2 and not is_rpi
- name: For Debian, always use bridging - except RPi
set_fact:
iiab_lan_iface: br0
when: num_lan_interfaces >= 1 and is_debuntu and not is_rpi
when: num_lan_interfaces|int >= 1 and is_debuntu and not is_rpi
- name: WiFi is on the LAN - use bridging - except RPi
set_fact: