diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-05 08:47:54 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-19 07:00:31 +0000 |
commit | b76a5c94cfeb1a7bad8ac5c818ed3065a4d32210 (patch) | |
tree | 4cc2a37f8a4d390ff5b8095cf289169a9182e599 /data/templates | |
parent | c8f116c251e5ab91b518533f595c6efd66b9c392 (diff) | |
download | vyos-1x-b76a5c94cfeb1a7bad8ac5c818ed3065a4d32210.tar.gz vyos-1x-b76a5c94cfeb1a7bad8ac5c818ed3065a4d32210.zip |
wireless: T6496: use mac-address validator on BSSID and move it up one CLI level
(cherry picked from commit 0c9499c5b3f7cc053c1f29ecf28d679c1a3156e2)
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/wifi/wpa_supplicant.conf.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/wifi/wpa_supplicant.conf.j2 b/data/templates/wifi/wpa_supplicant.conf.j2 index 8839663e1..04088e1ad 100644 --- a/data/templates/wifi/wpa_supplicant.conf.j2 +++ b/data/templates/wifi/wpa_supplicant.conf.j2 @@ -89,7 +89,7 @@ network={ key_mgmt=NONE {% endif %} {% endif %} -{% if security.bssid is vyos_defined %} - bssid={{ security.bssid }} +{% if bssid is vyos_defined %} + bssid={{ bssid }} {% endif %} } |