mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Merge pull request #507 from jvonau/br0-fix
br0 - single interface mis-detection
This commit is contained in:
commit
3b29741026
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
Reference in a new issue