1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 11:12:06 +00:00

Update roles/network/tasks/detected_network.yml

future proof

Co-authored-by: A Holt <holta@users.noreply.github.com>
This commit is contained in:
Jerry Vonau 2025-01-24 08:14:42 -06:00 committed by GitHub
parent 9991273391
commit e319b394e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -270,7 +270,7 @@
ignore_errors: True
- name: Detect country code passed from cmdline in dmesg
shell: dmesg | grep ieee80211 | awk -F cfg80211.ieee80211_regdom= '{print $2}'
shell: dmesg | grep -m1 'cfg80211\.ieee80211_regdom=' | awk -F 'cfg80211\.ieee80211_regdom=' '{print $2}'
register: cmdline_country_code
ignore_errors: True