mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
use 'iw reg get' in hostapd if present
This commit is contained in:
parent
bb95816c79
commit
2f321dc0a4
1 changed files with 11 additions and 0 deletions
|
@ -87,6 +87,17 @@
|
||||||
systemd:
|
systemd:
|
||||||
daemon_reload: yes
|
daemon_reload: yes
|
||||||
|
|
||||||
|
- name: Detect WiFi country code in use
|
||||||
|
command: iw reg get | grep country | grep -v UNSET | awk '{print $2}' | sed "s|:||"
|
||||||
|
register: REG_DOM
|
||||||
|
ignore_errors: True
|
||||||
|
when: discovered_wireless_iface != "none"
|
||||||
|
|
||||||
|
- name: Set Wifi Region country code for hostapd when present
|
||||||
|
set_fact:
|
||||||
|
host_country_code: "{{ REG_DOM }}"
|
||||||
|
when: REG_DOM is defined and REG_DOM.stdout | length > 0
|
||||||
|
|
||||||
- name: Clone wifi if needed
|
- name: Clone wifi if needed
|
||||||
systemd:
|
systemd:
|
||||||
name: iiab-clone-wifi
|
name: iiab-clone-wifi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue