1
0
Fork 0
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:
A Holt 2017-11-09 13:51:45 -05:00 committed by GitHub
commit 3b29741026
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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: