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:
parent
a622c2bf8e
commit
41033ba949
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue