diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-12-20 14:25:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-12-20 14:25:33 +0100 |
commit | 466452c1b9f5d497dadc0ea45317ef14407c6c84 (patch) | |
tree | 4ba6ff21b19d50129b050e1ec0f03b8cfaf2afc3 /data/templates | |
parent | 2059f35021191b10d9349f6a531138fc5810f409 (diff) | |
download | vyos-1x-466452c1b9f5d497dadc0ea45317ef14407c6c84.tar.gz vyos-1x-466452c1b9f5d497dadc0ea45317ef14407c6c84.zip |
wifi: T3043: country-code should be lower case
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/wifi/hostapd.conf.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/wifi/hostapd.conf.tmpl b/data/templates/wifi/hostapd.conf.tmpl index e66e3472b..433e1d36f 100644 --- a/data/templates/wifi/hostapd.conf.tmpl +++ b/data/templates/wifi/hostapd.conf.tmpl @@ -50,7 +50,7 @@ logger_stdout_level=0 # Country code (ISO/IEC 3166-1). Used to set regulatory domain. # Set as needed to indicate country in which device is operating. # This can limit available channels and transmit power. -country_code={{ country_code }} +country_code={{ country_code | upper }} # Enable IEEE 802.11d. This advertises the country_code and the set of allowed # channels and transmit power levels based on the regulatory limits. The |