diff options
author | Ubuntu <ubuntu@cert-jenkins-slave-1-201406-15260.maas> | 2022-03-10 13:20:23 +0000 |
---|---|---|
committer | Ubuntu <ubuntu@cert-jenkins-slave-1-201406-15260.maas> | 2022-03-10 13:20:23 +0000 |
commit | fc26a9c8b21b698726dd14da457bdec0e66d9e2f (patch) | |
tree | a28c52abe4400910fa40f28f488b844a4094fd0b | |
parent | 77f76d01ac8bb5e34f8c155d7d9f3185c8efaff8 (diff) | |
parent | 24d7f6f0920a7da2936df8330b2680319367e788 (diff) |
Merge #416013 from ~pieq/plainbox-provider-checkbox:allow-wifi-ssid-with-spaces
-rwxr-xr-x | bin/wifi_nmcli_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/wifi_nmcli_test.py b/bin/wifi_nmcli_test.py index e2c0a52..936af9a 100755 --- a/bin/wifi_nmcli_test.py +++ b/bin/wifi_nmcli_test.py @@ -160,7 +160,7 @@ def open_connection(args): cmd = ("nmcli c add con-name TEST_CON " "ifname {} " "type wifi " - "ssid {} " + "ssid '{}' " "-- " "ipv4.method auto " "ipv4.dhcp-timeout 30 " @@ -208,7 +208,7 @@ def secured_connection(args): cmd = ("nmcli c add con-name TEST_CON " "ifname {} " "type wifi " - "ssid {} " + "ssid '{}' " "-- " "wifi-sec.key-mgmt wpa-psk " "wifi-sec.psk {} " |