mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
limit hostapd to 2.4GHz for now on RPI
This commit is contained in:
parent
3b0be9d865
commit
3dd370e088
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
|||
- name: Setting WiFi channel to {{ current_host_channel.stdout }} on RPi hardware
|
||||
set_fact:
|
||||
host_channel: "{{ current_host_channel.stdout }}"
|
||||
when: current_host_channel.stdout != "" and discovered_wireless_iface != "none" and rpi_model != "none"
|
||||
when: current_host_channel.stdout != "" and current_host_channel.stdout|int <= 13 and discovered_wireless_iface != "none" and rpi_model != "none"
|
||||
|
||||
- name: Create /etc/hostapd/hostapd.conf from template
|
||||
template:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue