From 79ddb280dea137c77544ff27b1126698260c1a77 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 16 Oct 2018 14:06:38 +0200 Subject: [PATCH 1/6] shared: add _nm_utils_ascii_str_to_uint64() helper (cherry picked from commit c0d292d2551622f656a6eee7ccab7dfa2fc50b9a) --- shared/nm-utils/nm-shared-utils.c | 44 +++++++++++++++++++++++++++++++ shared/nm-utils/nm-shared-utils.h | 3 ++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/shared/nm-utils/nm-shared-utils.c b/shared/nm-utils/nm-shared-utils.c index 4c2e329797..ba38237bc4 100644 --- a/shared/nm-utils/nm-shared-utils.c +++ b/shared/nm-utils/nm-shared-utils.c @@ -622,6 +622,50 @@ _nm_utils_ascii_str_to_int64 (const char *str, guint base, gint64 min, gint64 ma return v; } +guint64 +_nm_utils_ascii_str_to_uint64 (const char *str, guint base, guint64 min, guint64 max, guint64 fallback) +{ + guint64 v; + const char *s = NULL; + + if (str) { + while (g_ascii_isspace (str[0])) + str++; + } + if (!str || !str[0]) { + errno = EINVAL; + return fallback; + } + + errno = 0; + v = g_ascii_strtoull (str, (char **) &s, base); + + if (errno != 0) + return fallback; + if (s[0] != '\0') { + while (g_ascii_isspace (s[0])) + s++; + if (s[0] != '\0') { + errno = EINVAL; + return fallback; + } + } + if (v > max || v < min) { + errno = ERANGE; + return fallback; + } + + if ( v != 0 + && str[0] == '-') { + /* I don't know why, but g_ascii_strtoull() accepts minus signs ("-2" gives 18446744073709551614). + * For "-0" that is OK, but otherwise not. */ + errno = ERANGE; + return fallback; + } + + return v; +} + /*****************************************************************************/ /* like nm_strcmp_p(), suitable for g_ptr_array_sort_with_data(). diff --git a/shared/nm-utils/nm-shared-utils.h b/shared/nm-utils/nm-shared-utils.h index bc492571a8..28d04b2951 100644 --- a/shared/nm-utils/nm-shared-utils.h +++ b/shared/nm-utils/nm-shared-utils.h @@ -374,7 +374,8 @@ gboolean nm_utils_parse_inaddr_prefix (int addr_family, char **out_addr, int *out_prefix); -gint64 _nm_utils_ascii_str_to_int64 (const char *str, guint base, gint64 min, gint64 max, gint64 fallback); +gint64 _nm_utils_ascii_str_to_int64 (const char *str, guint base, gint64 min, gint64 max, gint64 fallback); +guint64 _nm_utils_ascii_str_to_uint64 (const char *str, guint base, guint64 min, guint64 max, guint64 fallback); int _nm_utils_ascii_str_to_bool (const char *str, int default_value); From 1b987a5366f5d51c7882d272b336e53d25cb54c0 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 16 Oct 2018 14:06:43 +0200 Subject: [PATCH 2/6] cli: fix handling uint64 connection property "serial.send-delay" libnm currently has only one GObject property of type uint64: "serial.send-delay". However, it's broken because uint64 handling is not implemented. $ nmcli connection add type gsm autoconnect no con-name t ifname '*' apn 'xyz' serial.baud 5 Connection 't' (4c929f17-9fda-41d6-8f90-897f6d46b078) successfully added. $ nmcli connection show t ... ipv6.dhcp-duid: -- ipv6.dhcp-send-hostname: yes ipv6.dhcp-hostname: -- ipv6.token: -- (process:14016): libnmc-CRITICAL **: 14:08:32.591: file clients/common/nm-meta-setting-desc.c: line 811 (_get_fcn_gobject_int): should not be reached serial.baud: 5 serial.bits: 8 serial.parity: none serial.stopbits: 1 serial.send-delay: -- gsm.number: *99# ... $ nmcli connection add type gsm autoconnect no con-name t ifname '*' apn 'xyz' serial.baud 5 serial.send-delay 100 (process:14852): libnmc-CRITICAL **: 14:12:24.259: file clients/common/nm-meta-setting-desc.c: line 1131 (_set_fcn_gobject_int): should not be reached Segmentation fault (core dumped) Fixes: b6d9bdcee86fc6d52b2aa1bc8a0dcfa64bec86e8 (cherry picked from commit a600b3a3b26660ad519ed2ffb0c0cd1d0f41df08) --- clients/common/nm-meta-setting-desc.c | 153 ++++++++++++++++---------- clients/common/nm-meta-setting-desc.h | 11 +- 2 files changed, 104 insertions(+), 60 deletions(-) diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c index f794c67b2b..0957ea7bce 100644 --- a/clients/common/nm-meta-setting-desc.c +++ b/clients/common/nm-meta-setting-desc.c @@ -783,7 +783,8 @@ _get_fcn_gobject_int (ARGS_GET_FCN) { GParamSpec *pspec; nm_auto_unset_gvalue GValue gval = G_VALUE_INIT; - gint64 v; + gboolean is_uint64 = FALSE; + NMMetaSignUnsignInt64 v; guint base = 10; const NMMetaUtilsIntValueInfo *value_infos; char *return_str; @@ -799,13 +800,18 @@ _get_fcn_gobject_int (ARGS_GET_FCN) NM_SET_OUT (out_is_default, g_param_value_defaults (pspec, &gval)); switch (pspec->value_type) { case G_TYPE_INT: - v = g_value_get_int (&gval); + v.i64 = g_value_get_int (&gval); break; case G_TYPE_UINT: - v = g_value_get_uint (&gval); + v.u64 = g_value_get_uint (&gval); + is_uint64 = TRUE; break; case G_TYPE_INT64: - v = g_value_get_int64 (&gval); + v.i64 = g_value_get_int64 (&gval); + break; + case G_TYPE_UINT64: + v.u64 = g_value_get_uint64 (&gval); + is_uint64 = TRUE; break; default: g_return_val_if_reached (NULL); @@ -819,10 +825,16 @@ _get_fcn_gobject_int (ARGS_GET_FCN) switch (base) { case 10: - return_str = g_strdup_printf ("%"G_GINT64_FORMAT, v); + if (is_uint64) + return_str = g_strdup_printf ("%"G_GUINT64_FORMAT, v.u64); + else + return_str = g_strdup_printf ("%"G_GINT64_FORMAT, v.i64); break; case 16: - return_str = g_strdup_printf ("0x%"G_GINT64_MODIFIER"x", v); + if (is_uint64) + return_str = g_strdup_printf ("0x%"G_GINT64_MODIFIER"x", v.u64); + else + return_str = g_strdup_printf ("0x%"G_GINT64_MODIFIER"x", (guint64) v.i64); break; default: return_str = NULL; @@ -833,7 +845,8 @@ _get_fcn_gobject_int (ARGS_GET_FCN) && property_info->property_typ_data && (value_infos = property_info->property_typ_data->subtype.gobject_int.value_infos)) { for (; value_infos->nick; value_infos++) { - if (value_infos->value == v) { + if ( ( is_uint64 && value_infos->value.u64 == v.u64) + || (!is_uint64 && value_infos->value.i64 == v.i64)) { char *old_str = return_str; return_str = g_strdup_printf ("%s (%s)", old_str, value_infos->nick); @@ -1060,16 +1073,21 @@ _set_fcn_gobject_int (ARGS_SET_FCN) int errsv; const GParamSpec *pspec; nm_auto_unset_gvalue GValue gval = G_VALUE_INIT; - gint64 v = 0; + gboolean is_uint64; + NMMetaSignUnsignInt64 v; gboolean has_minmax = FALSE; - gint64 min = G_MININT64; - gint64 max = G_MAXINT64; + NMMetaSignUnsignInt64 min = { 0 }; + NMMetaSignUnsignInt64 max = { 0 }; guint base = 10; - const NMMetaUtilsIntValueInfo *value_infos = NULL; - gboolean has_value = FALSE; + const NMMetaUtilsIntValueInfo *value_infos; + + pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (G_OBJECT (setting)), property_info->property_name); + if (!G_IS_PARAM_SPEC (pspec)) + g_return_val_if_reached (FALSE); + + is_uint64 = NM_IN_SET (pspec->value_type, G_TYPE_UINT, G_TYPE_UINT64); if (property_info->property_typ_data) { - if ( value && (value_infos = property_info->property_typ_data->subtype.gobject_int.value_infos)) { gs_free char *vv_stripped = NULL; @@ -1083,85 +1101,106 @@ _set_fcn_gobject_int (ARGS_SET_FCN) for (; value_infos->nick; value_infos++) { if (nm_streq (value_infos->nick, vv)) { v = value_infos->value; - has_value = TRUE; - break; + goto have_value_from_nick; } } } if (property_info->property_typ_data->subtype.gobject_int.base > 0) base = property_info->property_typ_data->subtype.gobject_int.base; - if ( property_info->property_typ_data->subtype.gobject_int.min - || property_info->property_typ_data->subtype.gobject_int.max) { + + if ( ( is_uint64 + && ( property_info->property_typ_data->subtype.gobject_int.min.u64 + || property_info->property_typ_data->subtype.gobject_int.max.u64)) + || ( !is_uint64 + && ( property_info->property_typ_data->subtype.gobject_int.min.i64 + || property_info->property_typ_data->subtype.gobject_int.max.i64))) { min = property_info->property_typ_data->subtype.gobject_int.min; max = property_info->property_typ_data->subtype.gobject_int.max; has_minmax = TRUE; } } - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (G_OBJECT (setting)), property_info->property_name); - if (!G_IS_PARAM_SPEC (pspec)) - g_return_val_if_reached (FALSE); - switch (pspec->value_type) { - case G_TYPE_INT: - if (!has_minmax) { - const GParamSpecInt *p = (GParamSpecInt *) pspec; + if (!has_minmax) { + switch (pspec->value_type) { + case G_TYPE_INT: + { + const GParamSpecInt *p = (GParamSpecInt *) pspec; - min = p->minimum; - max = p->maximum; - } - break; - case G_TYPE_UINT: - if (!has_minmax) { - const GParamSpecUInt *p = (GParamSpecUInt *) pspec; + min.i64 = p->minimum; + max.i64 = p->maximum; + } + break; + case G_TYPE_UINT: + { + const GParamSpecUInt *p = (GParamSpecUInt *) pspec; - min = p->minimum; - max = p->maximum; - } - break; - case G_TYPE_INT64: - if (!has_minmax) { - const GParamSpecInt64 *p = (GParamSpecInt64 *) pspec; + min.u64 = p->minimum; + max.u64 = p->maximum; + } + break; + case G_TYPE_INT64: + { + const GParamSpecInt64 *p = (GParamSpecInt64 *) pspec; - min = p->minimum; - max = p->maximum; + min.i64 = p->minimum; + max.i64 = p->maximum; + } + break; + case G_TYPE_UINT64: + { + const GParamSpecUInt64 *p = (GParamSpecUInt64 *) pspec; + + min.u64 = p->minimum; + max.u64 = p->maximum; + } + break; + default: + g_return_val_if_reached (FALSE); } - break; - default: - g_return_val_if_reached (FALSE); } - if (!has_value) { - v = _nm_utils_ascii_str_to_int64 (value, base, min, max, 0); + if (is_uint64) + v.u64 = _nm_utils_ascii_str_to_uint64 (value, base, min.u64, max.u64, 0); + else + v.i64 = _nm_utils_ascii_str_to_int64 (value, base, min.i64, max.i64, 0); - if ((errsv = errno) != 0) { - if (errsv == ERANGE) { + if ((errsv = errno) != 0) { + if (errsv == ERANGE) { + if (is_uint64) { g_set_error (error, NM_UTILS_ERROR, NM_UTILS_ERROR_INVALID_ARGUMENT, - _("'%s' is out of range [%lli, %lli]"), - value, - (long long) min, - (long long) max); + _("'%s' is out of range [%"G_GUINT64_FORMAT", %"G_GUINT64_FORMAT"]"), + value, min.u64, max.u64); } else { g_set_error (error, NM_UTILS_ERROR, NM_UTILS_ERROR_INVALID_ARGUMENT, - _("'%s' is not a valid number"), value); + _("'%s' is out of range [%"G_GINT64_FORMAT", %"G_GINT64_FORMAT"]"), + value, min.i64, max.i64); } - return FALSE; + } else { + g_set_error (error, NM_UTILS_ERROR, NM_UTILS_ERROR_INVALID_ARGUMENT, + _("'%s' is not a valid number"), value); } + return FALSE; } +have_value_from_nick: + g_value_init (&gval, pspec->value_type); switch (pspec->value_type) { case G_TYPE_INT: - g_value_set_int (&gval, v); + g_value_set_int (&gval, v.i64); break; case G_TYPE_UINT: - g_value_set_uint (&gval, v); + g_value_set_uint (&gval, v.u64); break; case G_TYPE_INT64: - g_value_set_int64 (&gval, v); + g_value_set_int64 (&gval, v.i64); + break; + case G_TYPE_UINT64: + g_value_set_uint64 (&gval, v.u64); break; default: - nm_assert_not_reached (); + g_return_val_if_reached (FALSE); break; } diff --git a/clients/common/nm-meta-setting-desc.h b/clients/common/nm-meta-setting-desc.h index 31f1dd51bd..163dcf2e1a 100644 --- a/clients/common/nm-meta-setting-desc.h +++ b/clients/common/nm-meta-setting-desc.h @@ -232,9 +232,14 @@ struct _NMMetaPropertyType { struct _NMUtilsEnumValueInfo; +typedef union { + gint64 i64; + guint64 u64; +} NMMetaSignUnsignInt64; + typedef struct { const char *nick; - gint64 value; + NMMetaSignUnsignInt64 value; } NMMetaUtilsIntValueInfo; struct _NMMetaPropertyTypData { @@ -255,8 +260,8 @@ struct _NMMetaPropertyTypData { int value); } gobject_enum; struct { - gint64 min; - gint64 max; + NMMetaSignUnsignInt64 min; + NMMetaSignUnsignInt64 max; guint base; const NMMetaUtilsIntValueInfo *value_infos; } gobject_int; From 7c78398d3e1871f36aec2d2bf522e8cdd49b7e04 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 16 Oct 2018 15:05:01 +0200 Subject: [PATCH 3/6] cli: fix setting "serial.parity" enum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The meta data type descriptor must set .get_gtype only for GObject properties which are of type int or uint. That is, when the enum type cannot be automatically detected. However, NM_SETTING_SERIAL_PARITY is a g_param_spec_enum() of type NM_TYPE_SETTING_SERIAL_PARITY, so setting the get_gtype() hook is wrong and leads to a crash $ /bin/nmcli connection add type gsm autoconnect no con-name t ifname '*' apn xyz serial.parity 5 (process:11086): libnmc-CRITICAL **: 15:04:35.180: file clients/common/nm-meta-setting-desc.c: line 1283 (_set_fcn_gobject_enum): should not be reached Segmentation fault (core dumped) That is because the enum property setter does: »···if ( has_gtype »··· && NM_IN_SET (gtype_prop, »··· G_TYPE_INT, »··· G_TYPE_UINT) »··· && G_TYPE_IS_CLASSED (gtype) »··· && (gtype_class = g_type_class_ref (gtype)) »··· && ( (is_flags = G_IS_FLAGS_CLASS (gtype_class)) »··· || G_IS_ENUM_CLASS (gtype_class))) { »···»···/* valid */ meaning, it only allows "has_gtype" if the native "gtype_prop" is G_TYPE_INT or G_TYPE_UINT. Fixes: 9a68123827a8c4fe1eeaaf003d365429441d97e9 (cherry picked from commit 127ac25ef8ddd08a78a4fa8b17df35c528b7a48c) --- clients/common/nm-meta-setting-desc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c index 0957ea7bce..d6f9cd6a3a 100644 --- a/clients/common/nm-meta-setting-desc.c +++ b/clients/common/nm-meta-setting-desc.c @@ -7159,7 +7159,6 @@ static const NMMetaPropertyInfo *const property_infos_SERIAL[] = { .property_type = &_pt_gobject_enum, .property_typ_data = DEFINE_PROPERTY_TYP_DATA ( PROPERTY_TYP_DATA_SUBTYPE (gobject_enum, - .get_gtype = nm_setting_serial_parity_get_type, .value_infos = ENUM_VALUE_INFOS ( { .value = NM_SETTING_SERIAL_PARITY_EVEN, From 3b782ece71a2b1595680159a9cc451f95403267b Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 17 Oct 2018 13:18:28 +0200 Subject: [PATCH 4/6] cli: minor cleanup of _set_fcn_gobject_enum() No need to check again the gtype_class. We did it above already. (cherry picked from commit 085105fc0e2c51796f4e5c389f1e08b1a783ef70) --- clients/common/nm-meta-setting-desc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c index d6f9cd6a3a..d291732a5a 100644 --- a/clients/common/nm-meta-setting-desc.c +++ b/clients/common/nm-meta-setting-desc.c @@ -1341,12 +1341,13 @@ _set_fcn_gobject_enum (ARGS_SET_FCN) g_value_set_int (&gval, v); else if (gtype_prop == G_TYPE_UINT) g_value_set_uint (&gval, v); - else if (G_IS_ENUM_CLASS (gtype_class)) - g_value_set_enum (&gval, v); - else if (G_IS_FLAGS_CLASS (gtype_class)) + else if (is_flags) { + nm_assert (G_IS_FLAGS_CLASS (gtype_class)); g_value_set_flags (&gval, v); - else - g_return_val_if_reached (FALSE); + } else { + nm_assert (G_IS_ENUM_CLASS (gtype_class)); + g_value_set_enum (&gval, v); + } if (!nm_g_object_set_property (G_OBJECT (setting), property_info->property_name, &gval, NULL)) goto fail; From 051a53db602a8f80e61b0ac11984372eb5f319c0 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 17 Oct 2018 13:56:09 +0200 Subject: [PATCH 5/6] tests: support UInt64 type in test-networkmanager-service.py and also accept "gsm" connection-type. Both will be used next. (cherry picked from commit 0f503efd6435fdbf09d60f764d487bd96100519a) --- tools/test-networkmanager-service.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/test-networkmanager-service.py b/tools/test-networkmanager-service.py index 9dd75bea55..8a37fb17bb 100755 --- a/tools/test-networkmanager-service.py +++ b/tools/test-networkmanager-service.py @@ -281,6 +281,8 @@ class Util: return GLib.Variant('s', str(val)) if isinstance(val, dbus.UInt32): return GLib.Variant('u', int(val)) + if isinstance(val, dbus.UInt64): + return GLib.Variant('t', int(val)) if isinstance(val, dbus.Boolean): return GLib.Variant('b', bool(val)) if isinstance(val, dbus.Byte): @@ -481,11 +483,12 @@ class NmUtil: if not do_verify_strict: return; t = s_con[NM.SETTING_CONNECTION_TYPE] - if t not in [ NM.SETTING_WIRED_SETTING_NAME, - NM.SETTING_WIRELESS_SETTING_NAME, + if t not in [ NM.SETTING_GSM_SETTING_NAME, NM.SETTING_VLAN_SETTING_NAME, + NM.SETTING_VPN_SETTING_NAME, NM.SETTING_WIMAX_SETTING_NAME, - NM.SETTING_VPN_SETTING_NAME ]: + NM.SETTING_WIRED_SETTING_NAME, + NM.SETTING_WIRELESS_SETTING_NAME ]: raise BusErr.InvalidPropertyException('connection.type: unsupported connection type "%s"' % (t)) try: From 632effb2e5e6aabbd820cae7077630b3239c1820 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 17 Oct 2018 13:41:08 +0200 Subject: [PATCH 6/6] cli/tests: add test for adding and displaying gsm/serial settings (cherry picked from commit 1b4f765c59ed975ab4c74b5e994962f613ee8498) --- .../test_003.expected | 3014 ++++++++++------- .../test_004.expected | 1712 +++++----- clients/tests/test-client.py | 8 + 3 files changed, 2737 insertions(+), 1997 deletions(-) diff --git a/clients/tests/test-client.check-on-disk/test_003.expected b/clients/tests/test-client.check-on-disk/test_003.expected index 65f5778535..5c522e5154 100644 --- a/clients/tests/test-client.check-on-disk/test_003.expected +++ b/clients/tests/test-client.check-on-disk/test_003.expected @@ -32,8 +32,18 @@ con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- <<< -size: 228 +size: 332 location: clients/tests/test-client.py:878:test_003()/4 +cmd: $NMCLI connection add type gsm autoconnect no con-name con-gsm1 ifname '*' apn xyz.con-gsm1 serial.baud 5 serial.send-delay 100 serial.pari 1 +lang: C +returncode: 0 +stdout: 81 bytes +>>> +Connection 'con-gsm1' (UUID-con-gsm1-REPLACED-REPLACED-REPL) successfully added. + +<<< +size: 228 +location: clients/tests/test-client.py:883:test_003()/5 cmd: $NMCLI c add type ethernet ifname '*' lang: C returncode: 0 @@ -42,70 +52,75 @@ stdout: 81 bytes Connection 'ethernet' (UUID-ethernet-REPLACED-REPLACED-REPL) successfully added. <<< -size: 385 -location: clients/tests/test-client.py:881:test_003()/5 +size: 451 +location: clients/tests/test-client.py:886:test_003()/6 cmd: $NMCLI c s lang: C returncode: 0 -stdout: 264 bytes +stdout: 330 bytes >>> NAME UUID TYPE DEVICE con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- <<< -size: 395 -location: clients/tests/test-client.py:881:test_003()/6 +size: 461 +location: clients/tests/test-client.py:886:test_003()/7 cmd: $NMCLI c s lang: pl_PL.UTF-8 returncode: 0 -stdout: 264 bytes +stdout: 330 bytes >>> NAME UUID TYPE DEVICE con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- <<< -size: 1237 -location: clients/tests/test-client.py:884:test_003()/7 +size: 1514 +location: clients/tests/test-client.py:889:test_003()/8 cmd: $NMCLI -f ALL c s lang: C returncode: 0 -stdout: 1108 bytes +stdout: 1385 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 no -- -- -- -- /etc/NetworkManager/system-connections/ethernet <<< -size: 1247 -location: clients/tests/test-client.py:884:test_003()/8 +size: 1524 +location: clients/tests/test-client.py:889:test_003()/9 cmd: $NMCLI -f ALL c s lang: pl_PL.UTF-8 returncode: 0 -stdout: 1108 bytes +stdout: 1385 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 nie -- -- -- -- /etc/NetworkManager/system-connections/ethernet <<< -size: 219 -location: clients/tests/test-client.py:888:test_003()/9 +size: 229 +location: clients/tests/test-client.py:893:test_003()/10 cmd: $NMCLI --complete-args -f ALL c s '' lang: C returncode: 0 -stdout: 73 bytes +stdout: 82 bytes >>> --active --order apath con-1 +con-gsm1 con-xx1 ethernet filename @@ -114,18 +129,19 @@ id path uuid <<< -size: 230 -location: clients/tests/test-client.py:888:test_003()/10 +size: 239 +location: clients/tests/test-client.py:893:test_003()/11 cmd: $NMCLI --complete-args -f ALL c s '' lang: pl_PL.UTF-8 returncode: 0 -stdout: 73 bytes +stdout: 82 bytes >>> --active --order apath con-1 +con-gsm1 con-xx1 ethernet filename @@ -133,9 +149,197 @@ help id path uuid +<<< +size: 3989 +location: clients/tests/test-client.py:896:test_003()/12 +cmd: $NMCLI con s con-gsm1 +lang: C +returncode: 0 +stdout: 3855 bytes +>>> +connection.id: con-gsm1 +connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL +connection.stable-id: -- +connection.type: gsm +connection.interface-name: -- +connection.autoconnect: no +connection.autoconnect-priority: 0 +connection.autoconnect-retries: -1 (default) +connection.multi-connect: 0 (default) +connection.auth-retries: -1 +connection.timestamp: 0 +connection.read-only: no +connection.permissions: -- +connection.zone: -- +connection.master: -- +connection.slave-type: -- +connection.autoconnect-slaves: -1 (default) +connection.secondaries: -- +connection.gateway-ping-timeout: 0 +connection.metered: unknown +connection.lldp: default +connection.mdns: -1 (default) +connection.llmnr: -1 (default) +ipv4.method: auto +ipv4.dns: -- +ipv4.dns-search: -- +ipv4.dns-options: "" +ipv4.dns-priority: 0 +ipv4.addresses: -- +ipv4.gateway: -- +ipv4.routes: -- +ipv4.route-metric: -1 +ipv4.route-table: 0 (unspec) +ipv4.ignore-auto-routes: no +ipv4.ignore-auto-dns: no +ipv4.dhcp-client-id: -- +ipv4.dhcp-timeout: 0 (default) +ipv4.dhcp-send-hostname: yes +ipv4.dhcp-hostname: -- +ipv4.dhcp-fqdn: -- +ipv4.never-default: no +ipv4.may-fail: yes +ipv4.dad-timeout: -1 (default) +ipv6.method: auto +ipv6.dns: -- +ipv6.dns-search: -- +ipv6.dns-options: "" +ipv6.dns-priority: 0 +ipv6.addresses: -- +ipv6.gateway: -- +ipv6.routes: -- +ipv6.route-metric: -1 +ipv6.route-table: 0 (unspec) +ipv6.ignore-auto-routes: no +ipv6.ignore-auto-dns: no +ipv6.never-default: no +ipv6.may-fail: yes +ipv6.ip6-privacy: -1 (unknown) +ipv6.addr-gen-mode: stable-privacy +ipv6.dhcp-duid: -- +ipv6.dhcp-send-hostname: yes +ipv6.dhcp-hostname: -- +ipv6.token: -- +serial.baud: 5 +serial.bits: 8 +serial.parity: even +serial.stopbits: 1 +serial.send-delay: 100 +gsm.number: *99# +gsm.username: -- +gsm.password: +gsm.password-flags: 0 (none) +gsm.apn: xyz.con-gsm1 +gsm.network-id: -- +gsm.pin: +gsm.pin-flags: 0 (none) +gsm.home-only: no +gsm.device-id: -- +gsm.sim-id: -- +gsm.sim-operator-id: -- +gsm.mtu: auto +proxy.method: none +proxy.browser-only: no +proxy.pac-url: -- +proxy.pac-script: -- + +<<< +size: 4018 +location: clients/tests/test-client.py:896:test_003()/13 +cmd: $NMCLI con s con-gsm1 +lang: pl_PL.UTF-8 +returncode: 0 +stdout: 3874 bytes +>>> +connection.id: con-gsm1 +connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL +connection.stable-id: -- +connection.type: gsm +connection.interface-name: -- +connection.autoconnect: nie +connection.autoconnect-priority: 0 +connection.autoconnect-retries: -1 (default) +connection.multi-connect: 0 (default) +connection.auth-retries: -1 +connection.timestamp: 0 +connection.read-only: nie +connection.permissions: -- +connection.zone: -- +connection.master: -- +connection.slave-type: -- +connection.autoconnect-slaves: -1 (default) +connection.secondaries: -- +connection.gateway-ping-timeout: 0 +connection.metered: nieznane +connection.lldp: default +connection.mdns: -1 (default) +connection.llmnr: -1 (default) +ipv4.method: auto +ipv4.dns: -- +ipv4.dns-search: -- +ipv4.dns-options: "" +ipv4.dns-priority: 0 +ipv4.addresses: -- +ipv4.gateway: -- +ipv4.routes: -- +ipv4.route-metric: -1 +ipv4.route-table: 0 (unspec) +ipv4.ignore-auto-routes: nie +ipv4.ignore-auto-dns: nie +ipv4.dhcp-client-id: -- +ipv4.dhcp-timeout: 0 (default) +ipv4.dhcp-send-hostname: tak +ipv4.dhcp-hostname: -- +ipv4.dhcp-fqdn: -- +ipv4.never-default: nie +ipv4.may-fail: tak +ipv4.dad-timeout: -1 (default) +ipv6.method: auto +ipv6.dns: -- +ipv6.dns-search: -- +ipv6.dns-options: "" +ipv6.dns-priority: 0 +ipv6.addresses: -- +ipv6.gateway: -- +ipv6.routes: -- +ipv6.route-metric: -1 +ipv6.route-table: 0 (unspec) +ipv6.ignore-auto-routes: nie +ipv6.ignore-auto-dns: nie +ipv6.never-default: nie +ipv6.may-fail: tak +ipv6.ip6-privacy: -1 (unknown) +ipv6.addr-gen-mode: stable-privacy +ipv6.dhcp-duid: -- +ipv6.dhcp-send-hostname: tak +ipv6.dhcp-hostname: -- +ipv6.token: -- +serial.baud: 5 +serial.bits: 8 +serial.parity: even +serial.stopbits: 1 +serial.send-delay: 100 +gsm.number: *99# +gsm.username: -- +gsm.password: +gsm.password-flags: 0 (brak) +gsm.apn: xyz.con-gsm1 +gsm.network-id: -- +gsm.pin: +gsm.pin-flags: 0 (brak) +gsm.home-only: nie +gsm.device-id: -- +gsm.sim-id: -- +gsm.sim-operator-id: -- +gsm.mtu: automatyczne +proxy.method: none +proxy.browser-only: nie +proxy.pac-url: -- +proxy.pac-script: -- + <<< size: 252 -location: clients/tests/test-client.py:901:test_003()/11 +location: clients/tests/test-client.py:909:test_003()/14 cmd: $NMCLI con up ethernet ifname eth0 lang: C returncode: 0 @@ -144,82 +348,86 @@ stdout: 106 bytes Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/1) <<< -size: 386 -location: clients/tests/test-client.py:904:test_003()/12 +size: 452 +location: clients/tests/test-client.py:912:test_003()/15 cmd: $NMCLI con lang: C returncode: 0 -stdout: 264 bytes +stdout: 330 bytes >>> NAME UUID TYPE DEVICE ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0 con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- <<< -size: 396 -location: clients/tests/test-client.py:904:test_003()/13 +size: 462 +location: clients/tests/test-client.py:912:test_003()/16 cmd: $NMCLI con lang: pl_PL.UTF-8 returncode: 0 -stdout: 264 bytes +stdout: 330 bytes >>> NAME UUID TYPE DEVICE ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0 con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- <<< -size: 1410 -location: clients/tests/test-client.py:907:test_003()/14 +size: 1730 +location: clients/tests/test-client.py:915:test_003()/17 cmd: $NMCLI -f ALL con lang: C returncode: 0 -stdout: 1280 bytes +stdout: 1600 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1424 -location: clients/tests/test-client.py:907:test_003()/15 +size: 1745 +location: clients/tests/test-client.py:915:test_003()/18 cmd: $NMCLI -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1284 bytes +stdout: 1605 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< size: 774 -location: clients/tests/test-client.py:910:test_003()/16 +location: clients/tests/test-client.py:918:test_003()/19 cmd: $NMCLI -f ALL con s -a lang: C returncode: 0 stdout: 640 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet <<< size: 786 -location: clients/tests/test-client.py:910:test_003()/17 +location: clients/tests/test-client.py:918:test_003()/20 cmd: $NMCLI -f ALL con s -a lang: pl_PL.UTF-8 returncode: 0 stdout: 642 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet <<< size: 352 -location: clients/tests/test-client.py:913:test_003()/18 +location: clients/tests/test-client.py:921:test_003()/21 cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act lang: C returncode: 0 @@ -230,7 +438,7 @@ ACTIVE-PATH DEVICE UUID <<< size: 362 -location: clients/tests/test-client.py:913:test_003()/19 +location: clients/tests/test-client.py:921:test_003()/22 cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act lang: pl_PL.UTF-8 returncode: 0 @@ -241,7 +449,7 @@ ACTIVE-PATH DEVICE UUID <<< size: 241 -location: clients/tests/test-client.py:916:test_003()/20 +location: clients/tests/test-client.py:924:test_003()/23 cmd: $NMCLI -f UUID,NAME con s --active lang: C returncode: 0 @@ -252,7 +460,7 @@ UUID-ethernet-REPLACED-REPLACED-REPL ethernet <<< size: 251 -location: clients/tests/test-client.py:916:test_003()/21 +location: clients/tests/test-client.py:924:test_003()/24 cmd: $NMCLI -f UUID,NAME con s --active lang: pl_PL.UTF-8 returncode: 0 @@ -263,7 +471,7 @@ UUID-ethernet-REPLACED-REPLACED-REPL ethernet <<< size: 3805 -location: clients/tests/test-client.py:919:test_003()/22 +location: clients/tests/test-client.py:927:test_003()/25 cmd: $NMCLI -f ALL con s ethernet lang: C returncode: 0 @@ -353,7 +561,7 @@ proxy.pac-script: -- <<< size: 3833 -location: clients/tests/test-client.py:919:test_003()/23 +location: clients/tests/test-client.py:927:test_003()/26 cmd: $NMCLI -f ALL con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -443,7 +651,7 @@ proxy.pac-script: -- <<< size: 199 -location: clients/tests/test-client.py:922:test_003()/24 +location: clients/tests/test-client.py:930:test_003()/27 cmd: $NMCLI -f GENERAL.STATE con s ethernet lang: C returncode: 0 @@ -453,7 +661,7 @@ GENERAL.STATE: activated <<< size: 210 -location: clients/tests/test-client.py:922:test_003()/25 +location: clients/tests/test-client.py:930:test_003()/28 cmd: $NMCLI -f GENERAL.STATE con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -463,7 +671,7 @@ GENERAL.STATE: aktywowano <<< size: 4462 -location: clients/tests/test-client.py:925:test_003()/26 +location: clients/tests/test-client.py:933:test_003()/29 cmd: $NMCLI con s ethernet lang: C returncode: 0 @@ -559,13 +767,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4494 -location: clients/tests/test-client.py:925:test_003()/27 +location: clients/tests/test-client.py:933:test_003()/30 cmd: $NMCLI con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -661,13 +869,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 1243 -location: clients/tests/test-client.py:928:test_003()/28 +location: clients/tests/test-client.py:936:test_003()/31 cmd: $NMCLI -f ALL dev s eth0 lang: C returncode: 0 @@ -687,7 +895,7 @@ Unknown parameter: eth0 <<< size: 1258 -location: clients/tests/test-client.py:928:test_003()/29 +location: clients/tests/test-client.py:936:test_003()/32 cmd: $NMCLI -f ALL dev s eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -707,7 +915,7 @@ Nieznany parametr: eth0 <<< size: 3390 -location: clients/tests/test-client.py:931:test_003()/30 +location: clients/tests/test-client.py:939:test_003()/33 cmd: $NMCLI -f ALL dev show eth0 lang: C returncode: 0 @@ -764,14 +972,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3423 -location: clients/tests/test-client.py:931:test_003()/31 +location: clients/tests/test-client.py:939:test_003()/34 cmd: $NMCLI -f ALL dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -828,14 +1036,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2165 -location: clients/tests/test-client.py:934:test_003()/32 +location: clients/tests/test-client.py:942:test_003()/35 cmd: $NMCLI -f ALL -t dev show eth0 lang: C returncode: 0 @@ -892,14 +1100,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2175 -location: clients/tests/test-client.py:934:test_003()/33 +location: clients/tests/test-client.py:942:test_003()/36 cmd: $NMCLI -f ALL -t dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -956,14 +1164,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 252 -location: clients/tests/test-client.py:901:test_003()/34 +location: clients/tests/test-client.py:909:test_003()/37 cmd: $NMCLI con up ethernet ifname eth1 lang: C returncode: 0 @@ -972,88 +1180,92 @@ stdout: 106 bytes Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/2) <<< -size: 452 -location: clients/tests/test-client.py:904:test_003()/35 +size: 518 +location: clients/tests/test-client.py:912:test_003()/38 cmd: $NMCLI con lang: C returncode: 0 -stdout: 330 bytes +stdout: 396 bytes >>> NAME UUID TYPE DEVICE ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0 ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth1 con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- <<< -size: 462 -location: clients/tests/test-client.py:904:test_003()/36 +size: 528 +location: clients/tests/test-client.py:912:test_003()/39 cmd: $NMCLI con lang: pl_PL.UTF-8 returncode: 0 -stdout: 330 bytes +stdout: 396 bytes >>> NAME UUID TYPE DEVICE ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0 ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth1 con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- <<< -size: 1730 -location: clients/tests/test-client.py:907:test_003()/37 +size: 2050 +location: clients/tests/test-client.py:915:test_003()/40 cmd: $NMCLI -f ALL con lang: C returncode: 0 -stdout: 1600 bytes +stdout: 1920 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1745 -location: clients/tests/test-client.py:907:test_003()/38 +size: 2066 +location: clients/tests/test-client.py:915:test_003()/41 cmd: $NMCLI -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1605 bytes +stdout: 1926 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< size: 1094 -location: clients/tests/test-client.py:910:test_003()/39 +location: clients/tests/test-client.py:918:test_003()/42 cmd: $NMCLI -f ALL con s -a lang: C returncode: 0 stdout: 960 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet <<< size: 1107 -location: clients/tests/test-client.py:910:test_003()/40 +location: clients/tests/test-client.py:918:test_003()/43 cmd: $NMCLI -f ALL con s -a lang: pl_PL.UTF-8 returncode: 0 stdout: 963 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet <<< size: 450 -location: clients/tests/test-client.py:913:test_003()/41 +location: clients/tests/test-client.py:921:test_003()/44 cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act lang: C returncode: 0 @@ -1065,7 +1277,7 @@ ACTIVE-PATH DEVICE UUID <<< size: 460 -location: clients/tests/test-client.py:913:test_003()/42 +location: clients/tests/test-client.py:921:test_003()/45 cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act lang: pl_PL.UTF-8 returncode: 0 @@ -1077,7 +1289,7 @@ ACTIVE-PATH DEVICE UUID <<< size: 241 -location: clients/tests/test-client.py:916:test_003()/43 +location: clients/tests/test-client.py:924:test_003()/46 cmd: $NMCLI -f UUID,NAME con s --active lang: C returncode: 0 @@ -1088,7 +1300,7 @@ UUID-ethernet-REPLACED-REPLACED-REPL ethernet <<< size: 251 -location: clients/tests/test-client.py:916:test_003()/44 +location: clients/tests/test-client.py:924:test_003()/47 cmd: $NMCLI -f UUID,NAME con s --active lang: pl_PL.UTF-8 returncode: 0 @@ -1099,7 +1311,7 @@ UUID-ethernet-REPLACED-REPLACED-REPL ethernet <<< size: 3805 -location: clients/tests/test-client.py:919:test_003()/45 +location: clients/tests/test-client.py:927:test_003()/48 cmd: $NMCLI -f ALL con s ethernet lang: C returncode: 0 @@ -1189,7 +1401,7 @@ proxy.pac-script: -- <<< size: 3833 -location: clients/tests/test-client.py:919:test_003()/46 +location: clients/tests/test-client.py:927:test_003()/49 cmd: $NMCLI -f ALL con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -1279,7 +1491,7 @@ proxy.pac-script: -- <<< size: 251 -location: clients/tests/test-client.py:922:test_003()/47 +location: clients/tests/test-client.py:930:test_003()/50 cmd: $NMCLI -f GENERAL.STATE con s ethernet lang: C returncode: 0 @@ -1291,7 +1503,7 @@ GENERAL.STATE: activated <<< size: 263 -location: clients/tests/test-client.py:922:test_003()/48 +location: clients/tests/test-client.py:930:test_003()/51 cmd: $NMCLI -f GENERAL.STATE con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -1303,7 +1515,7 @@ GENERAL.STATE: aktywowano <<< size: 5127 -location: clients/tests/test-client.py:925:test_003()/49 +location: clients/tests/test-client.py:933:test_003()/52 cmd: $NMCLI con s ethernet lang: C returncode: 0 @@ -1399,7 +1611,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -1412,13 +1624,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 5163 -location: clients/tests/test-client.py:925:test_003()/50 +location: clients/tests/test-client.py:933:test_003()/53 cmd: $NMCLI con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -1514,7 +1726,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -1527,13 +1739,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 1243 -location: clients/tests/test-client.py:928:test_003()/51 +location: clients/tests/test-client.py:936:test_003()/54 cmd: $NMCLI -f ALL dev s eth0 lang: C returncode: 0 @@ -1553,7 +1765,7 @@ Unknown parameter: eth0 <<< size: 1258 -location: clients/tests/test-client.py:928:test_003()/52 +location: clients/tests/test-client.py:936:test_003()/55 cmd: $NMCLI -f ALL dev s eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -1573,7 +1785,7 @@ Nieznany parametr: eth0 <<< size: 3390 -location: clients/tests/test-client.py:931:test_003()/53 +location: clients/tests/test-client.py:939:test_003()/56 cmd: $NMCLI -f ALL dev show eth0 lang: C returncode: 0 @@ -1630,14 +1842,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3423 -location: clients/tests/test-client.py:931:test_003()/54 +location: clients/tests/test-client.py:939:test_003()/57 cmd: $NMCLI -f ALL dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -1694,14 +1906,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2165 -location: clients/tests/test-client.py:934:test_003()/55 +location: clients/tests/test-client.py:942:test_003()/58 cmd: $NMCLI -f ALL -t dev show eth0 lang: C returncode: 0 @@ -1758,14 +1970,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2175 -location: clients/tests/test-client.py:934:test_003()/56 +location: clients/tests/test-client.py:942:test_003()/59 cmd: $NMCLI -f ALL -t dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -1822,68 +2034,72 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1745 -location: clients/tests/test-client.py:949:test_003()/57 +size: 2068 +location: clients/tests/test-client.py:957:test_003()/60 cmd: $NMCLI -f ALL con lang: C returncode: 0 -stdout: 1615 bytes +stdout: 1938 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1765 -location: clients/tests/test-client.py:949:test_003()/58 +size: 2090 +location: clients/tests/test-client.py:957:test_003()/61 cmd: $NMCLI -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1625 bytes +stdout: 1950 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 327 -location: clients/tests/test-client.py:952:test_003()/59 +size: 375 +location: clients/tests/test-client.py:960:test_003()/62 cmd: $NMCLI -f UUID,TYPE con lang: C returncode: 0 -stdout: 192 bytes +stdout: 240 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 337 -location: clients/tests/test-client.py:952:test_003()/60 +size: 385 +location: clients/tests/test-client.py:960:test_003()/63 cmd: $NMCLI -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 192 bytes +stdout: 240 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 5130 -location: clients/tests/test-client.py:955:test_003()/61 +location: clients/tests/test-client.py:963:test_003()/64 cmd: $NMCLI con s ethernet lang: C returncode: 0 @@ -1979,7 +2195,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -1992,13 +2208,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 5167 -location: clients/tests/test-client.py:955:test_003()/62 +location: clients/tests/test-client.py:963:test_003()/65 cmd: $NMCLI con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -2094,7 +2310,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -2107,13 +2323,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4505 -location: clients/tests/test-client.py:958:test_003()/63 +location: clients/tests/test-client.py:966:test_003()/66 cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -2209,13 +2425,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4538 -location: clients/tests/test-client.py:958:test_003()/64 +location: clients/tests/test-client.py:966:test_003()/67 cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -2311,13 +2527,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3390 -location: clients/tests/test-client.py:961:test_003()/65 +location: clients/tests/test-client.py:969:test_003()/68 cmd: $NMCLI -f all dev show eth0 lang: C returncode: 0 @@ -2374,14 +2590,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3423 -location: clients/tests/test-client.py:961:test_003()/66 +location: clients/tests/test-client.py:969:test_003()/69 cmd: $NMCLI -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -2438,68 +2654,72 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 2027 -location: clients/tests/test-client.py:949:test_003()/67 +size: 2350 +location: clients/tests/test-client.py:957:test_003()/70 cmd: $NMCLI --color yes -f ALL con lang: C returncode: 0 -stdout: 1885 bytes +stdout: 2208 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2047 -location: clients/tests/test-client.py:949:test_003()/68 +size: 2372 +location: clients/tests/test-client.py:957:test_003()/71 cmd: $NMCLI --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1895 bytes +stdout: 2220 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 357 -location: clients/tests/test-client.py:952:test_003()/69 +size: 405 +location: clients/tests/test-client.py:960:test_003()/72 cmd: $NMCLI --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 210 bytes +stdout: 258 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 367 -location: clients/tests/test-client.py:952:test_003()/70 +size: 415 +location: clients/tests/test-client.py:960:test_003()/73 cmd: $NMCLI --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 210 bytes +stdout: 258 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 5142 -location: clients/tests/test-client.py:955:test_003()/71 +location: clients/tests/test-client.py:963:test_003()/74 cmd: $NMCLI --color yes con s ethernet lang: C returncode: 0 @@ -2595,7 +2815,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -2608,13 +2828,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 5179 -location: clients/tests/test-client.py:955:test_003()/72 +location: clients/tests/test-client.py:963:test_003()/75 cmd: $NMCLI --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -2710,7 +2930,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -2723,13 +2943,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4517 -location: clients/tests/test-client.py:958:test_003()/73 +location: clients/tests/test-client.py:966:test_003()/76 cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -2825,13 +3045,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4550 -location: clients/tests/test-client.py:958:test_003()/74 +location: clients/tests/test-client.py:966:test_003()/77 cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -2927,13 +3147,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3402 -location: clients/tests/test-client.py:961:test_003()/75 +location: clients/tests/test-client.py:969:test_003()/78 cmd: $NMCLI --color yes -f all dev show eth0 lang: C returncode: 0 @@ -2990,14 +3210,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3435 -location: clients/tests/test-client.py:961:test_003()/76 +location: clients/tests/test-client.py:969:test_003()/79 cmd: $NMCLI --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -3054,54 +3274,56 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 2231 -location: clients/tests/test-client.py:949:test_003()/77 +size: 2554 +location: clients/tests/test-client.py:957:test_003()/80 cmd: $NMCLI --pretty -f ALL con lang: C returncode: 0 -stdout: 2092 bytes +stdout: 2415 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2273 -location: clients/tests/test-client.py:949:test_003()/78 +size: 2598 +location: clients/tests/test-client.py:957:test_003()/81 cmd: $NMCLI --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2124 bytes +stdout: 2449 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 538 -location: clients/tests/test-client.py:952:test_003()/79 +size: 586 +location: clients/tests/test-client.py:960:test_003()/82 cmd: $NMCLI --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 394 bytes +stdout: 442 bytes >>> ====================================== NetworkManager connection profiles @@ -3110,15 +3332,16 @@ UUID TYPE -------------------------------------------------------------------------------------- UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 568 -location: clients/tests/test-client.py:952:test_003()/80 +size: 616 +location: clients/tests/test-client.py:960:test_003()/83 cmd: $NMCLI --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 414 bytes +stdout: 462 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -3127,11 +3350,12 @@ UUID TYPE ------------------------------------------------------------------------------------------ UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 6384 -location: clients/tests/test-client.py:955:test_003()/81 +location: clients/tests/test-client.py:963:test_003()/84 cmd: $NMCLI --pretty con s ethernet lang: C returncode: 0 @@ -3238,7 +3462,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -3255,14 +3479,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 6440 -location: clients/tests/test-client.py:955:test_003()/82 +location: clients/tests/test-client.py:963:test_003()/85 cmd: $NMCLI --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -3369,7 +3593,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -3386,14 +3610,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5446 -location: clients/tests/test-client.py:958:test_003()/83 +location: clients/tests/test-client.py:966:test_003()/86 cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -3500,14 +3724,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5491 -location: clients/tests/test-client.py:958:test_003()/84 +location: clients/tests/test-client.py:966:test_003()/87 cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -3614,14 +3838,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4250 -location: clients/tests/test-client.py:961:test_003()/85 +location: clients/tests/test-client.py:969:test_003()/88 cmd: $NMCLI --pretty -f all dev show eth0 lang: C returncode: 0 @@ -3688,7 +3912,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet @@ -3696,7 +3920,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | e <<< size: 4289 -location: clients/tests/test-client.py:961:test_003()/86 +location: clients/tests/test-client.py:969:test_003()/89 cmd: $NMCLI --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -3763,55 +3987,57 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet ------------------------------------------------------------------------------- <<< -size: 2513 -location: clients/tests/test-client.py:949:test_003()/87 +size: 2836 +location: clients/tests/test-client.py:957:test_003()/90 cmd: $NMCLI --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 2362 bytes +stdout: 2685 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2555 -location: clients/tests/test-client.py:949:test_003()/88 +size: 2880 +location: clients/tests/test-client.py:957:test_003()/91 cmd: $NMCLI --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2394 bytes +stdout: 2719 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 568 -location: clients/tests/test-client.py:952:test_003()/89 +size: 616 +location: clients/tests/test-client.py:960:test_003()/92 cmd: $NMCLI --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 412 bytes +stdout: 460 bytes >>> ====================================== NetworkManager connection profiles @@ -3820,15 +4046,16 @@ UUID TYPE -------------------------------------------------------------------------------------- UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 598 -location: clients/tests/test-client.py:952:test_003()/90 +size: 646 +location: clients/tests/test-client.py:960:test_003()/93 cmd: $NMCLI --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 432 bytes +stdout: 480 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -3837,11 +4064,12 @@ UUID TYPE ------------------------------------------------------------------------------------------ UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 6396 -location: clients/tests/test-client.py:955:test_003()/91 +location: clients/tests/test-client.py:963:test_003()/94 cmd: $NMCLI --pretty --color yes con s ethernet lang: C returncode: 0 @@ -3948,7 +4176,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -3965,14 +4193,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 6452 -location: clients/tests/test-client.py:955:test_003()/92 +location: clients/tests/test-client.py:963:test_003()/95 cmd: $NMCLI --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -4079,7 +4307,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -4096,14 +4324,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5458 -location: clients/tests/test-client.py:958:test_003()/93 +location: clients/tests/test-client.py:966:test_003()/96 cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -4210,14 +4438,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5503 -location: clients/tests/test-client.py:958:test_003()/94 +location: clients/tests/test-client.py:966:test_003()/97 cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -4324,14 +4552,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4262 -location: clients/tests/test-client.py:961:test_003()/95 +location: clients/tests/test-client.py:969:test_003()/98 cmd: $NMCLI --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -4398,7 +4626,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet @@ -4406,7 +4634,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | e <<< size: 4301 -location: clients/tests/test-client.py:961:test_003()/96 +location: clients/tests/test-client.py:969:test_003()/99 cmd: $NMCLI --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -4473,65 +4701,69 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet ------------------------------------------------------------------------------- <<< -size: 1008 -location: clients/tests/test-client.py:949:test_003()/97 +size: 1185 +location: clients/tests/test-client.py:957:test_003()/100 cmd: $NMCLI --terse -f ALL con lang: C returncode: 0 -stdout: 871 bytes +stdout: 1046 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1018 -location: clients/tests/test-client.py:949:test_003()/98 +size: 1195 +location: clients/tests/test-client.py:957:test_003()/101 cmd: $NMCLI --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 871 bytes +stdout: 1046 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 299 -location: clients/tests/test-client.py:952:test_003()/99 +size: 341 +location: clients/tests/test-client.py:960:test_003()/102 cmd: $NMCLI --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 156 bytes +stdout: 197 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 310 -location: clients/tests/test-client.py:952:test_003()/100 +size: 351 +location: clients/tests/test-client.py:960:test_003()/103 cmd: $NMCLI --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 156 bytes +stdout: 197 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 2769 -location: clients/tests/test-client.py:955:test_003()/101 +location: clients/tests/test-client.py:963:test_003()/104 cmd: $NMCLI --terse con s ethernet lang: C returncode: 0 @@ -4627,7 +4859,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -4640,13 +4872,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2779 -location: clients/tests/test-client.py:955:test_003()/102 +location: clients/tests/test-client.py:963:test_003()/105 cmd: $NMCLI --terse con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -4742,7 +4974,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -4755,13 +4987,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2441 -location: clients/tests/test-client.py:958:test_003()/103 +location: clients/tests/test-client.py:966:test_003()/106 cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -4857,13 +5089,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2451 -location: clients/tests/test-client.py:958:test_003()/104 +location: clients/tests/test-client.py:966:test_003()/107 cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -4959,13 +5191,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2171 -location: clients/tests/test-client.py:961:test_003()/105 +location: clients/tests/test-client.py:969:test_003()/108 cmd: $NMCLI --terse -f all dev show eth0 lang: C returncode: 0 @@ -5022,14 +5254,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2181 -location: clients/tests/test-client.py:961:test_003()/106 +location: clients/tests/test-client.py:969:test_003()/109 cmd: $NMCLI --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -5086,64 +5318,68 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1292 -location: clients/tests/test-client.py:949:test_003()/107 +size: 1467 +location: clients/tests/test-client.py:957:test_003()/110 cmd: $NMCLI --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1141 bytes +stdout: 1316 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1302 -location: clients/tests/test-client.py:949:test_003()/108 +size: 1477 +location: clients/tests/test-client.py:957:test_003()/111 cmd: $NMCLI --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1141 bytes +stdout: 1316 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 330 -location: clients/tests/test-client.py:952:test_003()/109 +size: 371 +location: clients/tests/test-client.py:960:test_003()/112 cmd: $NMCLI --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 174 bytes +stdout: 215 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 340 -location: clients/tests/test-client.py:952:test_003()/110 +size: 381 +location: clients/tests/test-client.py:960:test_003()/113 cmd: $NMCLI --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 174 bytes +stdout: 215 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 2781 -location: clients/tests/test-client.py:955:test_003()/111 +location: clients/tests/test-client.py:963:test_003()/114 cmd: $NMCLI --terse --color yes con s ethernet lang: C returncode: 0 @@ -5239,7 +5475,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -5252,13 +5488,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2791 -location: clients/tests/test-client.py:955:test_003()/112 +location: clients/tests/test-client.py:963:test_003()/115 cmd: $NMCLI --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -5354,7 +5590,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -5367,13 +5603,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2453 -location: clients/tests/test-client.py:958:test_003()/113 +location: clients/tests/test-client.py:966:test_003()/116 cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -5469,13 +5705,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2463 -location: clients/tests/test-client.py:958:test_003()/114 +location: clients/tests/test-client.py:966:test_003()/117 cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -5571,13 +5807,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2183 -location: clients/tests/test-client.py:961:test_003()/115 +location: clients/tests/test-client.py:969:test_003()/118 cmd: $NMCLI --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -5634,14 +5870,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2193 -location: clients/tests/test-client.py:961:test_003()/116 +location: clients/tests/test-client.py:969:test_003()/119 cmd: $NMCLI --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -5698,68 +5934,72 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1761 -location: clients/tests/test-client.py:949:test_003()/117 +size: 2084 +location: clients/tests/test-client.py:957:test_003()/120 cmd: $NMCLI --mode tabular -f ALL con lang: C returncode: 0 -stdout: 1615 bytes +stdout: 1938 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1781 -location: clients/tests/test-client.py:949:test_003()/118 +size: 2106 +location: clients/tests/test-client.py:957:test_003()/121 cmd: $NMCLI --mode tabular -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1625 bytes +stdout: 1950 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 343 -location: clients/tests/test-client.py:952:test_003()/119 +size: 391 +location: clients/tests/test-client.py:960:test_003()/122 cmd: $NMCLI --mode tabular -f UUID,TYPE con lang: C returncode: 0 -stdout: 192 bytes +stdout: 240 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 353 -location: clients/tests/test-client.py:952:test_003()/120 +size: 401 +location: clients/tests/test-client.py:960:test_003()/123 cmd: $NMCLI --mode tabular -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 192 bytes +stdout: 240 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 3416 -location: clients/tests/test-client.py:955:test_003()/121 +location: clients/tests/test-client.py:963:test_003()/124 cmd: $NMCLI --mode tabular con s ethernet lang: C returncode: 0 @@ -5781,16 +6021,16 @@ name method browser-only pac-url pac-script proxy none no -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 3450 -location: clients/tests/test-client.py:955:test_003()/122 +location: clients/tests/test-client.py:963:test_003()/125 cmd: $NMCLI --mode tabular con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -5812,16 +6052,16 @@ name method browser-only pac-url pac-script proxy none nie -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2974 -location: clients/tests/test-client.py:958:test_003()/123 +location: clients/tests/test-client.py:966:test_003()/126 cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -5843,12 +6083,12 @@ name method browser-only pac-url pac-script proxy none no -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 3006 -location: clients/tests/test-client.py:958:test_003()/124 +location: clients/tests/test-client.py:966:test_003()/127 cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -5870,12 +6110,12 @@ name method browser-only pac-url pac-script proxy none nie -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2899 -location: clients/tests/test-client.py:961:test_003()/125 +location: clients/tests/test-client.py:969:test_003()/128 cmd: $NMCLI --mode tabular -f all dev show eth0 lang: C returncode: 0 @@ -5903,11 +6143,11 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2930 -location: clients/tests/test-client.py:961:test_003()/126 +location: clients/tests/test-client.py:969:test_003()/129 cmd: $NMCLI --mode tabular -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -5935,65 +6175,69 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 2043 -location: clients/tests/test-client.py:949:test_003()/127 +size: 2366 +location: clients/tests/test-client.py:957:test_003()/130 cmd: $NMCLI --mode tabular --color yes -f ALL con lang: C returncode: 0 -stdout: 1885 bytes +stdout: 2208 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2063 -location: clients/tests/test-client.py:949:test_003()/128 +size: 2388 +location: clients/tests/test-client.py:957:test_003()/131 cmd: $NMCLI --mode tabular --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1895 bytes +stdout: 2220 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 373 -location: clients/tests/test-client.py:952:test_003()/129 +size: 421 +location: clients/tests/test-client.py:960:test_003()/132 cmd: $NMCLI --mode tabular --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 210 bytes +stdout: 258 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 383 -location: clients/tests/test-client.py:952:test_003()/130 +size: 431 +location: clients/tests/test-client.py:960:test_003()/133 cmd: $NMCLI --mode tabular --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 210 bytes +stdout: 258 bytes >>> UUID TYPE UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 3428 -location: clients/tests/test-client.py:955:test_003()/131 +location: clients/tests/test-client.py:963:test_003()/134 cmd: $NMCLI --mode tabular --color yes con s ethernet lang: C returncode: 0 @@ -6015,16 +6259,16 @@ name method browser-only pac-url pac-script proxy none no -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 3462 -location: clients/tests/test-client.py:955:test_003()/132 +location: clients/tests/test-client.py:963:test_003()/135 cmd: $NMCLI --mode tabular --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -6046,16 +6290,16 @@ name method browser-only pac-url pac-script proxy none nie -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2986 -location: clients/tests/test-client.py:958:test_003()/133 +location: clients/tests/test-client.py:966:test_003()/136 cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -6077,12 +6321,12 @@ name method browser-only pac-url pac-script proxy none no -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 3018 -location: clients/tests/test-client.py:958:test_003()/134 +location: clients/tests/test-client.py:966:test_003()/137 cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -6104,12 +6348,12 @@ name method browser-only pac-url pac-script proxy none nie -- -- GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2911 -location: clients/tests/test-client.py:961:test_003()/135 +location: clients/tests/test-client.py:969:test_003()/138 cmd: $NMCLI --mode tabular --color yes -f all dev show eth0 lang: C returncode: 0 @@ -6137,11 +6381,11 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2942 -location: clients/tests/test-client.py:961:test_003()/136 +location: clients/tests/test-client.py:969:test_003()/139 cmd: $NMCLI --mode tabular --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -6169,51 +6413,53 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 2247 -location: clients/tests/test-client.py:949:test_003()/137 +size: 2570 +location: clients/tests/test-client.py:957:test_003()/140 cmd: $NMCLI --mode tabular --pretty -f ALL con lang: C returncode: 0 -stdout: 2092 bytes +stdout: 2415 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2289 -location: clients/tests/test-client.py:949:test_003()/138 +size: 2614 +location: clients/tests/test-client.py:957:test_003()/141 cmd: $NMCLI --mode tabular --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2124 bytes +stdout: 2449 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 554 -location: clients/tests/test-client.py:952:test_003()/139 +size: 602 +location: clients/tests/test-client.py:960:test_003()/142 cmd: $NMCLI --mode tabular --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 394 bytes +stdout: 442 bytes >>> ====================================== NetworkManager connection profiles @@ -6222,15 +6468,16 @@ UUID TYPE -------------------------------------------------------------------------------------- UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 584 -location: clients/tests/test-client.py:952:test_003()/140 +size: 632 +location: clients/tests/test-client.py:960:test_003()/143 cmd: $NMCLI --mode tabular --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 414 bytes +stdout: 462 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -6239,11 +6486,12 @@ UUID TYPE ------------------------------------------------------------------------------------------ UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 5607 -location: clients/tests/test-client.py:955:test_003()/141 +location: clients/tests/test-client.py:963:test_003()/144 cmd: $NMCLI --mode tabular --pretty con s ethernet lang: C returncode: 0 @@ -6277,7 +6525,7 @@ proxy none no -- -- ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- ====================================================================== @@ -6285,12 +6533,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 5701 -location: clients/tests/test-client.py:955:test_003()/142 +location: clients/tests/test-client.py:963:test_003()/145 cmd: $NMCLI --mode tabular --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -6324,7 +6572,7 @@ proxy none nie -- -- =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- =========================================================================== @@ -6332,12 +6580,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano ni =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4713 -location: clients/tests/test-client.py:958:test_003()/143 +location: clients/tests/test-client.py:966:test_003()/146 cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -6371,12 +6619,12 @@ proxy none no -- -- ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4785 -location: clients/tests/test-client.py:958:test_003()/144 +location: clients/tests/test-client.py:966:test_003()/147 cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -6410,12 +6658,12 @@ proxy none nie -- -- =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4360 -location: clients/tests/test-client.py:961:test_003()/145 +location: clients/tests/test-client.py:969:test_003()/148 cmd: $NMCLI --mode tabular --pretty -f all dev show eth0 lang: C returncode: 0 @@ -6454,11 +6702,11 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 4428 -location: clients/tests/test-client.py:961:test_003()/146 +location: clients/tests/test-client.py:969:test_003()/149 cmd: $NMCLI --mode tabular --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -6497,51 +6745,53 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 2529 -location: clients/tests/test-client.py:949:test_003()/147 +size: 2852 +location: clients/tests/test-client.py:957:test_003()/150 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 2362 bytes +stdout: 2685 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2571 -location: clients/tests/test-client.py:949:test_003()/148 +size: 2896 +location: clients/tests/test-client.py:957:test_003()/151 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2394 bytes +stdout: 2719 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 584 -location: clients/tests/test-client.py:952:test_003()/149 +size: 632 +location: clients/tests/test-client.py:960:test_003()/152 cmd: $NMCLI --mode tabular --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 412 bytes +stdout: 460 bytes >>> ====================================== NetworkManager connection profiles @@ -6550,15 +6800,16 @@ UUID TYPE -------------------------------------------------------------------------------------- UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 614 -location: clients/tests/test-client.py:952:test_003()/150 +size: 662 +location: clients/tests/test-client.py:960:test_003()/153 cmd: $NMCLI --mode tabular --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 432 bytes +stdout: 480 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -6567,11 +6818,12 @@ UUID TYPE ------------------------------------------------------------------------------------------ UUID-ethernet-REPLACED-REPLACED-REPL ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 5619 -location: clients/tests/test-client.py:955:test_003()/151 +location: clients/tests/test-client.py:963:test_003()/154 cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet lang: C returncode: 0 @@ -6605,7 +6857,7 @@ proxy none no -- -- ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no no -- no /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- ====================================================================== @@ -6613,12 +6865,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 activated no ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 5713 -location: clients/tests/test-client.py:955:test_003()/152 +location: clients/tests/test-client.py:963:test_003()/155 cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -6652,7 +6904,7 @@ proxy none nie -- -- =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/2 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- =========================================================================== @@ -6660,12 +6912,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth1 aktywowano ni =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4725 -location: clients/tests/test-client.py:958:test_003()/153 +location: clients/tests/test-client.py:966:test_003()/156 cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -6699,12 +6951,12 @@ proxy none no -- -- ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4797 -location: clients/tests/test-client.py:958:test_003()/154 +location: clients/tests/test-client.py:966:test_003()/157 cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -6738,12 +6990,12 @@ proxy none nie -- -- =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4372 -location: clients/tests/test-client.py:961:test_003()/155 +location: clients/tests/test-client.py:969:test_003()/158 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -6782,11 +7034,11 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 4440 -location: clients/tests/test-client.py:961:test_003()/156 +location: clients/tests/test-client.py:969:test_003()/159 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -6825,61 +7077,65 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1024 -location: clients/tests/test-client.py:949:test_003()/157 +size: 1200 +location: clients/tests/test-client.py:957:test_003()/160 cmd: $NMCLI --mode tabular --terse -f ALL con lang: C returncode: 0 -stdout: 871 bytes +stdout: 1046 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1034 -location: clients/tests/test-client.py:949:test_003()/158 +size: 1210 +location: clients/tests/test-client.py:957:test_003()/161 cmd: $NMCLI --mode tabular --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 871 bytes +stdout: 1046 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 315 -location: clients/tests/test-client.py:952:test_003()/159 +size: 356 +location: clients/tests/test-client.py:960:test_003()/162 cmd: $NMCLI --mode tabular --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 156 bytes +stdout: 197 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 325 -location: clients/tests/test-client.py:952:test_003()/160 +size: 366 +location: clients/tests/test-client.py:960:test_003()/163 cmd: $NMCLI --mode tabular --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 156 bytes +stdout: 197 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 828 -location: clients/tests/test-client.py:955:test_003()/161 +location: clients/tests/test-client.py:963:test_003()/164 cmd: $NMCLI --mode tabular --terse con s ethernet lang: C returncode: 0 @@ -6890,13 +7146,13 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 838 -location: clients/tests/test-client.py:955:test_003()/162 +location: clients/tests/test-client.py:963:test_003()/165 cmd: $NMCLI --mode tabular --terse con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -6907,13 +7163,13 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 681 -location: clients/tests/test-client.py:958:test_003()/163 +location: clients/tests/test-client.py:966:test_003()/166 cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -6924,11 +7180,11 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 691 -location: clients/tests/test-client.py:958:test_003()/164 +location: clients/tests/test-client.py:966:test_003()/167 cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -6939,11 +7195,11 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 1351 -location: clients/tests/test-client.py:961:test_003()/165 +location: clients/tests/test-client.py:969:test_003()/168 cmd: $NMCLI --mode tabular --terse -f all dev show eth0 lang: C returncode: 0 @@ -6956,11 +7212,11 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 1361 -location: clients/tests/test-client.py:961:test_003()/166 +location: clients/tests/test-client.py:969:test_003()/169 cmd: $NMCLI --mode tabular --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -6973,61 +7229,65 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1307 -location: clients/tests/test-client.py:949:test_003()/167 +size: 1482 +location: clients/tests/test-client.py:957:test_003()/170 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1141 bytes +stdout: 1316 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1317 -location: clients/tests/test-client.py:949:test_003()/168 +size: 1492 +location: clients/tests/test-client.py:957:test_003()/171 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1141 bytes +stdout: 1316 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 345 -location: clients/tests/test-client.py:952:test_003()/169 +size: 386 +location: clients/tests/test-client.py:960:test_003()/172 cmd: $NMCLI --mode tabular --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 174 bytes +stdout: 215 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 355 -location: clients/tests/test-client.py:952:test_003()/170 +size: 396 +location: clients/tests/test-client.py:960:test_003()/173 cmd: $NMCLI --mode tabular --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 174 bytes +stdout: 215 bytes >>> UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 840 -location: clients/tests/test-client.py:955:test_003()/171 +location: clients/tests/test-client.py:963:test_003()/174 cmd: $NMCLI --mode tabular --terse --color yes con s ethernet lang: C returncode: 0 @@ -7038,13 +7298,13 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 850 -location: clients/tests/test-client.py:955:test_003()/172 +location: clients/tests/test-client.py:963:test_003()/175 cmd: $NMCLI --mode tabular --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -7055,13 +7315,13 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 693 -location: clients/tests/test-client.py:958:test_003()/173 +location: clients/tests/test-client.py:966:test_003()/176 cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -7072,11 +7332,11 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 703 -location: clients/tests/test-client.py:958:test_003()/174 +location: clients/tests/test-client.py:966:test_003()/177 cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -7087,11 +7347,11 @@ connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0: ipv4:auto::: :0::::-1:0:no:no::0:yes:::no:yes:-1 ipv6:auto::: :0::::-1:0:no:no:no:yes:-1:stable-privacy::yes:: proxy:none:no:: -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 1363 -location: clients/tests/test-client.py:961:test_003()/175 +location: clients/tests/test-client.py:969:test_003()/178 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -7104,11 +7364,11 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 1373 -location: clients/tests/test-client.py:961:test_003()/176 +location: clients/tests/test-client.py:969:test_003()/179 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -7121,15 +7381,15 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 3415 -location: clients/tests/test-client.py:949:test_003()/177 +size: 4198 +location: clients/tests/test-client.py:957:test_003()/180 cmd: $NMCLI --mode multiline -f ALL con lang: C returncode: 0 -stdout: 3267 bytes +stdout: 4050 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -7139,7 +7399,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -7154,7 +7414,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -7176,6 +7436,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -7193,12 +7468,12 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 3434 -location: clients/tests/test-client.py:949:test_003()/178 +size: 4220 +location: clients/tests/test-client.py:957:test_003()/181 cmd: $NMCLI --mode multiline -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3276 bytes +stdout: 4062 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -7208,7 +7483,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -7223,7 +7498,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -7245,6 +7520,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -7262,38 +7552,42 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 531 -location: clients/tests/test-client.py:952:test_003()/179 +size: 652 +location: clients/tests/test-client.py:960:test_003()/182 cmd: $NMCLI --mode multiline -f UUID,TYPE con lang: C returncode: 0 -stdout: 378 bytes +stdout: 499 bytes >>> UUID: UUID-ethernet-REPLACED-REPLACED-REPL TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< -size: 541 -location: clients/tests/test-client.py:952:test_003()/180 +size: 662 +location: clients/tests/test-client.py:960:test_003()/183 cmd: $NMCLI --mode multiline -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 378 bytes +stdout: 499 bytes >>> UUID: UUID-ethernet-REPLACED-REPLACED-REPL TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< size: 5148 -location: clients/tests/test-client.py:955:test_003()/181 +location: clients/tests/test-client.py:963:test_003()/184 cmd: $NMCLI --mode multiline con s ethernet lang: C returncode: 0 @@ -7389,7 +7683,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -7402,13 +7696,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 5185 -location: clients/tests/test-client.py:955:test_003()/182 +location: clients/tests/test-client.py:963:test_003()/185 cmd: $NMCLI --mode multiline con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -7504,7 +7798,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -7517,13 +7811,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4523 -location: clients/tests/test-client.py:958:test_003()/183 +location: clients/tests/test-client.py:966:test_003()/186 cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -7619,13 +7913,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4556 -location: clients/tests/test-client.py:958:test_003()/184 +location: clients/tests/test-client.py:966:test_003()/187 cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -7721,13 +8015,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3408 -location: clients/tests/test-client.py:961:test_003()/185 +location: clients/tests/test-client.py:969:test_003()/188 cmd: $NMCLI --mode multiline -f all dev show eth0 lang: C returncode: 0 @@ -7784,14 +8078,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3441 -location: clients/tests/test-client.py:961:test_003()/186 +location: clients/tests/test-client.py:969:test_003()/189 cmd: $NMCLI --mode multiline -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -7848,18 +8142,18 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 3697 -location: clients/tests/test-client.py:949:test_003()/187 +size: 4480 +location: clients/tests/test-client.py:957:test_003()/190 cmd: $NMCLI --mode multiline --color yes -f ALL con lang: C returncode: 0 -stdout: 3537 bytes +stdout: 4320 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -7869,7 +8163,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -7884,7 +8178,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -7906,6 +8200,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -7923,12 +8232,12 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 3716 -location: clients/tests/test-client.py:949:test_003()/188 +size: 4502 +location: clients/tests/test-client.py:957:test_003()/191 cmd: $NMCLI --mode multiline --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3546 bytes +stdout: 4332 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -7938,7 +8247,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -7953,7 +8262,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -7975,6 +8284,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -7992,38 +8316,42 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 561 -location: clients/tests/test-client.py:952:test_003()/189 +size: 682 +location: clients/tests/test-client.py:960:test_003()/192 cmd: $NMCLI --mode multiline --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 396 bytes +stdout: 517 bytes >>> UUID: UUID-ethernet-REPLACED-REPLACED-REPL TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< -size: 571 -location: clients/tests/test-client.py:952:test_003()/190 +size: 692 +location: clients/tests/test-client.py:960:test_003()/193 cmd: $NMCLI --mode multiline --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 396 bytes +stdout: 517 bytes >>> UUID: UUID-ethernet-REPLACED-REPLACED-REPL TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< size: 5160 -location: clients/tests/test-client.py:955:test_003()/191 +location: clients/tests/test-client.py:963:test_003()/194 cmd: $NMCLI --mode multiline --color yes con s ethernet lang: C returncode: 0 @@ -8119,7 +8447,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -8132,13 +8460,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 5197 -location: clients/tests/test-client.py:955:test_003()/192 +location: clients/tests/test-client.py:963:test_003()/195 cmd: $NMCLI --mode multiline --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -8234,7 +8562,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- @@ -8247,13 +8575,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4535 -location: clients/tests/test-client.py:958:test_003()/193 +location: clients/tests/test-client.py:966:test_003()/196 cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -8349,13 +8677,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 4568 -location: clients/tests/test-client.py:958:test_003()/194 +location: clients/tests/test-client.py:966:test_003()/197 cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -8451,13 +8779,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3420 -location: clients/tests/test-client.py:961:test_003()/195 +location: clients/tests/test-client.py:969:test_003()/198 cmd: $NMCLI --mode multiline --color yes -f all dev show eth0 lang: C returncode: 0 @@ -8514,14 +8842,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 3453 -location: clients/tests/test-client.py:961:test_003()/196 +location: clients/tests/test-client.py:969:test_003()/199 cmd: $NMCLI --mode multiline --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -8578,18 +8906,18 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 3961 -location: clients/tests/test-client.py:949:test_003()/197 +size: 4824 +location: clients/tests/test-client.py:957:test_003()/200 cmd: $NMCLI --mode multiline --pretty -f ALL con lang: C returncode: 0 -stdout: 3804 bytes +stdout: 4667 bytes >>> =============================================================================== NetworkManager connection profiles @@ -8602,7 +8930,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -8618,7 +8946,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -8642,6 +8970,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -8660,12 +9004,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 3986 -location: clients/tests/test-client.py:949:test_003()/198 +size: 4852 +location: clients/tests/test-client.py:957:test_003()/201 cmd: $NMCLI --mode multiline --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3819 bytes +stdout: 4685 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -8678,7 +9022,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -8694,7 +9038,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -8718,6 +9062,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -8736,12 +9096,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 997 -location: clients/tests/test-client.py:952:test_003()/199 +size: 1199 +location: clients/tests/test-client.py:960:test_003()/202 cmd: $NMCLI --mode multiline --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 835 bytes +stdout: 1036 bytes >>> =============================================================================== NetworkManager connection profiles @@ -8752,17 +9112,20 @@ TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< -size: 1013 -location: clients/tests/test-client.py:952:test_003()/200 +size: 1215 +location: clients/tests/test-client.py:960:test_003()/203 cmd: $NMCLI --mode multiline --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 841 bytes +stdout: 1042 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -8773,13 +9136,16 @@ TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< size: 6402 -location: clients/tests/test-client.py:955:test_003()/201 +location: clients/tests/test-client.py:963:test_003()/204 cmd: $NMCLI --mode multiline --pretty con s ethernet lang: C returncode: 0 @@ -8886,7 +9252,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -8903,14 +9269,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 6458 -location: clients/tests/test-client.py:955:test_003()/202 +location: clients/tests/test-client.py:963:test_003()/205 cmd: $NMCLI --mode multiline --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -9017,7 +9383,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -9034,14 +9400,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5464 -location: clients/tests/test-client.py:958:test_003()/203 +location: clients/tests/test-client.py:966:test_003()/206 cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -9148,14 +9514,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5509 -location: clients/tests/test-client.py:958:test_003()/204 +location: clients/tests/test-client.py:966:test_003()/207 cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -9262,14 +9628,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4268 -location: clients/tests/test-client.py:961:test_003()/205 +location: clients/tests/test-client.py:969:test_003()/208 cmd: $NMCLI --mode multiline --pretty -f all dev show eth0 lang: C returncode: 0 @@ -9336,7 +9702,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet @@ -9344,7 +9710,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | e <<< size: 4307 -location: clients/tests/test-client.py:961:test_003()/206 +location: clients/tests/test-client.py:969:test_003()/209 cmd: $NMCLI --mode multiline --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -9411,19 +9777,19 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet ------------------------------------------------------------------------------- <<< -size: 4243 -location: clients/tests/test-client.py:949:test_003()/207 +size: 5106 +location: clients/tests/test-client.py:957:test_003()/210 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 4074 bytes +stdout: 4937 bytes >>> =============================================================================== NetworkManager connection profiles @@ -9436,7 +9802,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -9452,7 +9818,7 @@ TIMESTAMP-REAL: never AUTOCONNECT: yes AUTOCONNECT-PRIORITY: 0 READONLY: no -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -9476,6 +9842,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -9494,12 +9876,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 4268 -location: clients/tests/test-client.py:949:test_003()/208 +size: 5134 +location: clients/tests/test-client.py:957:test_003()/211 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 4089 bytes +stdout: 4955 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -9512,7 +9894,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -9528,7 +9910,7 @@ TIMESTAMP-REAL: nigdy AUTOCONNECT: tak AUTOCONNECT-PRIORITY: 0 READONLY: nie -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -9552,6 +9934,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -9570,12 +9968,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 1027 -location: clients/tests/test-client.py:952:test_003()/209 +size: 1229 +location: clients/tests/test-client.py:960:test_003()/212 cmd: $NMCLI --mode multiline --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 853 bytes +stdout: 1054 bytes >>> =============================================================================== NetworkManager connection profiles @@ -9586,17 +9984,20 @@ TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< -size: 1043 -location: clients/tests/test-client.py:952:test_003()/210 +size: 1245 +location: clients/tests/test-client.py:960:test_003()/213 cmd: $NMCLI --mode multiline --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 859 bytes +stdout: 1060 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -9607,13 +10008,16 @@ TYPE: ethernet UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< size: 6414 -location: clients/tests/test-client.py:955:test_003()/211 +location: clients/tests/test-client.py:963:test_003()/214 cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet lang: C returncode: 0 @@ -9720,7 +10124,7 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -9737,14 +10141,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 6470 -location: clients/tests/test-client.py:955:test_003()/212 +location: clients/tests/test-client.py:963:test_003()/215 cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -9851,7 +10255,7 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- @@ -9868,14 +10272,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5476 -location: clients/tests/test-client.py:958:test_003()/213 +location: clients/tests/test-client.py:966:test_003()/216 cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -9982,14 +10386,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 5521 -location: clients/tests/test-client.py:958:test_003()/214 +location: clients/tests/test-client.py:966:test_003()/217 cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -10096,14 +10500,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4280 -location: clients/tests/test-client.py:961:test_003()/215 +location: clients/tests/test-client.py:969:test_003()/218 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -10170,7 +10574,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet @@ -10178,7 +10582,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | e <<< size: 4319 -location: clients/tests/test-client.py:961:test_003()/216 +location: clients/tests/test-client.py:969:test_003()/219 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -10245,19 +10649,19 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet ------------------------------------------------------------------------------- <<< -size: 1583 -location: clients/tests/test-client.py:949:test_003()/217 +size: 1897 +location: clients/tests/test-client.py:957:test_003()/220 cmd: $NMCLI --mode multiline --terse -f ALL con lang: C returncode: 0 -stdout: 1427 bytes +stdout: 1741 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -10267,7 +10671,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -10282,7 +10686,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -10304,6 +10708,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -10321,12 +10740,12 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1593 -location: clients/tests/test-client.py:949:test_003()/218 +size: 1907 +location: clients/tests/test-client.py:957:test_003()/221 cmd: $NMCLI --mode multiline --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1427 bytes +stdout: 1741 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -10336,7 +10755,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -10351,7 +10770,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -10373,6 +10792,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -10390,38 +10824,42 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 347 -location: clients/tests/test-client.py:952:test_003()/219 +size: 398 +location: clients/tests/test-client.py:960:test_003()/222 cmd: $NMCLI --mode multiline --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 186 bytes +stdout: 237 bytes >>> UUID:UUID-ethernet-REPLACED-REPLACED-REPL TYPE:802-3-ethernet UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< -size: 357 -location: clients/tests/test-client.py:952:test_003()/220 +size: 408 +location: clients/tests/test-client.py:960:test_003()/223 cmd: $NMCLI --mode multiline --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 186 bytes +stdout: 237 bytes >>> UUID:UUID-ethernet-REPLACED-REPLACED-REPL TYPE:802-3-ethernet UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< size: 2786 -location: clients/tests/test-client.py:955:test_003()/221 +location: clients/tests/test-client.py:963:test_003()/224 cmd: $NMCLI --mode multiline --terse con s ethernet lang: C returncode: 0 @@ -10517,7 +10955,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -10530,13 +10968,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2796 -location: clients/tests/test-client.py:955:test_003()/222 +location: clients/tests/test-client.py:963:test_003()/225 cmd: $NMCLI --mode multiline --terse con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -10632,7 +11070,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -10645,13 +11083,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2458 -location: clients/tests/test-client.py:958:test_003()/223 +location: clients/tests/test-client.py:966:test_003()/226 cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -10747,13 +11185,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2468 -location: clients/tests/test-client.py:958:test_003()/224 +location: clients/tests/test-client.py:966:test_003()/227 cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -10849,13 +11287,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2188 -location: clients/tests/test-client.py:961:test_003()/225 +location: clients/tests/test-client.py:969:test_003()/228 cmd: $NMCLI --mode multiline --terse -f all dev show eth0 lang: C returncode: 0 @@ -10912,14 +11350,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2198 -location: clients/tests/test-client.py:961:test_003()/226 +location: clients/tests/test-client.py:969:test_003()/229 cmd: $NMCLI --mode multiline --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -10976,18 +11414,18 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1865 -location: clients/tests/test-client.py:949:test_003()/227 +size: 2179 +location: clients/tests/test-client.py:957:test_003()/230 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1697 bytes +stdout: 2011 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -10997,7 +11435,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -11012,7 +11450,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -11034,6 +11472,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -11051,12 +11504,12 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1875 -location: clients/tests/test-client.py:949:test_003()/228 +size: 2189 +location: clients/tests/test-client.py:957:test_003()/231 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1697 bytes +stdout: 2011 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -11066,7 +11519,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -11081,7 +11534,7 @@ TIMESTAMP-REAL:never AUTOCONNECT:yes AUTOCONNECT-PRIORITY:0 READONLY:no -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -11103,6 +11556,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -11120,38 +11588,42 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 377 -location: clients/tests/test-client.py:952:test_003()/229 +size: 428 +location: clients/tests/test-client.py:960:test_003()/232 cmd: $NMCLI --mode multiline --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 204 bytes +stdout: 255 bytes >>> UUID:UUID-ethernet-REPLACED-REPLACED-REPL TYPE:802-3-ethernet UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< -size: 387 -location: clients/tests/test-client.py:952:test_003()/230 +size: 438 +location: clients/tests/test-client.py:960:test_003()/233 cmd: $NMCLI --mode multiline --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 204 bytes +stdout: 255 bytes >>> UUID:UUID-ethernet-REPLACED-REPLACED-REPL TYPE:802-3-ethernet UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< size: 2798 -location: clients/tests/test-client.py:955:test_003()/231 +location: clients/tests/test-client.py:963:test_003()/234 cmd: $NMCLI --mode multiline --terse --color yes con s ethernet lang: C returncode: 0 @@ -11247,7 +11719,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -11260,13 +11732,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2808 -location: clients/tests/test-client.py:955:test_003()/232 +location: clients/tests/test-client.py:963:test_003()/235 cmd: $NMCLI --mode multiline --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 0 @@ -11362,7 +11834,7 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: @@ -11375,13 +11847,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2470 -location: clients/tests/test-client.py:958:test_003()/233 +location: clients/tests/test-client.py:966:test_003()/236 cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -11477,13 +11949,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2480 -location: clients/tests/test-client.py:958:test_003()/234 +location: clients/tests/test-client.py:966:test_003()/237 cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -11579,13 +12051,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2200 -location: clients/tests/test-client.py:961:test_003()/235 +location: clients/tests/test-client.py:969:test_003()/238 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -11642,14 +12114,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< size: 2210 -location: clients/tests/test-client.py:961:test_003()/236 +location: clients/tests/test-client.py:969:test_003()/239 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -11706,66 +12178,70 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet <<< -size: 1746 -location: clients/tests/test-client.py:949:test_003()/237 +size: 2069 +location: clients/tests/test-client.py:957:test_003()/240 cmd: $NMCLI -f ALL con lang: C returncode: 0 -stdout: 1615 bytes +stdout: 1938 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1766 -location: clients/tests/test-client.py:949:test_003()/238 +size: 2091 +location: clients/tests/test-client.py:957:test_003()/241 cmd: $NMCLI -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1625 bytes +stdout: 1950 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 280 -location: clients/tests/test-client.py:952:test_003()/239 +size: 328 +location: clients/tests/test-client.py:960:test_003()/242 cmd: $NMCLI -f UUID,TYPE con lang: C returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 290 -location: clients/tests/test-client.py:952:test_003()/240 +size: 338 +location: clients/tests/test-client.py:960:test_003()/243 cmd: $NMCLI -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 180 -location: clients/tests/test-client.py:955:test_003()/241 +location: clients/tests/test-client.py:963:test_003()/244 cmd: $NMCLI con s ethernet lang: C returncode: 10 @@ -11775,7 +12251,7 @@ Error: ethernet - no such connection profile. <<< size: 202 -location: clients/tests/test-client.py:955:test_003()/242 +location: clients/tests/test-client.py:963:test_003()/245 cmd: $NMCLI con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -11785,7 +12261,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 841 -location: clients/tests/test-client.py:958:test_003()/243 +location: clients/tests/test-client.py:966:test_003()/246 cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -11800,13 +12276,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 856 -location: clients/tests/test-client.py:958:test_003()/244 +location: clients/tests/test-client.py:966:test_003()/247 cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -11821,13 +12297,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3411 -location: clients/tests/test-client.py:961:test_003()/245 +location: clients/tests/test-client.py:969:test_003()/248 cmd: $NMCLI -f all dev show eth0 lang: C returncode: 0 @@ -11884,14 +12360,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 3444 -location: clients/tests/test-client.py:961:test_003()/246 +location: clients/tests/test-client.py:969:test_003()/249 cmd: $NMCLI -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -11948,66 +12424,70 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 2028 -location: clients/tests/test-client.py:949:test_003()/247 +size: 2351 +location: clients/tests/test-client.py:957:test_003()/250 cmd: $NMCLI --color yes -f ALL con lang: C returncode: 0 -stdout: 1885 bytes +stdout: 2208 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2048 -location: clients/tests/test-client.py:949:test_003()/248 +size: 2373 +location: clients/tests/test-client.py:957:test_003()/251 cmd: $NMCLI --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1895 bytes +stdout: 2220 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 292 -location: clients/tests/test-client.py:952:test_003()/249 +size: 340 +location: clients/tests/test-client.py:960:test_003()/252 cmd: $NMCLI --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 302 -location: clients/tests/test-client.py:952:test_003()/250 +size: 350 +location: clients/tests/test-client.py:960:test_003()/253 cmd: $NMCLI --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 192 -location: clients/tests/test-client.py:955:test_003()/251 +location: clients/tests/test-client.py:963:test_003()/254 cmd: $NMCLI --color yes con s ethernet lang: C returncode: 10 @@ -12017,7 +12497,7 @@ Error: ethernet - no such connection profile. <<< size: 214 -location: clients/tests/test-client.py:955:test_003()/252 +location: clients/tests/test-client.py:963:test_003()/255 cmd: $NMCLI --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -12027,7 +12507,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 853 -location: clients/tests/test-client.py:958:test_003()/253 +location: clients/tests/test-client.py:966:test_003()/256 cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -12042,13 +12522,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 868 -location: clients/tests/test-client.py:958:test_003()/254 +location: clients/tests/test-client.py:966:test_003()/257 cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -12063,13 +12543,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3423 -location: clients/tests/test-client.py:961:test_003()/255 +location: clients/tests/test-client.py:969:test_003()/258 cmd: $NMCLI --color yes -f all dev show eth0 lang: C returncode: 0 @@ -12126,14 +12606,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 3456 -location: clients/tests/test-client.py:961:test_003()/256 +location: clients/tests/test-client.py:969:test_003()/259 cmd: $NMCLI --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -12190,54 +12670,56 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 2232 -location: clients/tests/test-client.py:949:test_003()/257 +size: 2555 +location: clients/tests/test-client.py:957:test_003()/260 cmd: $NMCLI --pretty -f ALL con lang: C returncode: 0 -stdout: 2092 bytes +stdout: 2415 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2274 -location: clients/tests/test-client.py:949:test_003()/258 +size: 2599 +location: clients/tests/test-client.py:957:test_003()/261 cmd: $NMCLI --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2124 bytes +stdout: 2449 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 491 -location: clients/tests/test-client.py:952:test_003()/259 +size: 539 +location: clients/tests/test-client.py:960:test_003()/262 cmd: $NMCLI --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 346 bytes +stdout: 394 bytes >>> ====================================== NetworkManager connection profiles @@ -12245,15 +12727,16 @@ stdout: 346 bytes UUID TYPE -------------------------------------------------------------------------------------- 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 521 -location: clients/tests/test-client.py:952:test_003()/260 +size: 569 +location: clients/tests/test-client.py:960:test_003()/263 cmd: $NMCLI --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 366 bytes +stdout: 414 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -12261,11 +12744,12 @@ stdout: 366 bytes UUID TYPE ------------------------------------------------------------------------------------------ 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 189 -location: clients/tests/test-client.py:955:test_003()/261 +location: clients/tests/test-client.py:963:test_003()/264 cmd: $NMCLI --pretty con s ethernet lang: C returncode: 10 @@ -12275,7 +12759,7 @@ Error: ethernet - no such connection profile. <<< size: 211 -location: clients/tests/test-client.py:955:test_003()/262 +location: clients/tests/test-client.py:963:test_003()/265 cmd: $NMCLI --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -12285,7 +12769,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1377 -location: clients/tests/test-client.py:958:test_003()/263 +location: clients/tests/test-client.py:966:test_003()/266 cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -12306,14 +12790,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 1404 -location: clients/tests/test-client.py:958:test_003()/264 +location: clients/tests/test-client.py:966:test_003()/267 cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -12334,14 +12818,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4271 -location: clients/tests/test-client.py:961:test_003()/265 +location: clients/tests/test-client.py:969:test_003()/268 cmd: $NMCLI --pretty -f all dev show eth0 lang: C returncode: 0 @@ -12408,15 +12892,15 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< size: 4310 -location: clients/tests/test-client.py:961:test_003()/266 +location: clients/tests/test-client.py:969:test_003()/269 cmd: $NMCLI --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -12483,55 +12967,57 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< -size: 2514 -location: clients/tests/test-client.py:949:test_003()/267 +size: 2837 +location: clients/tests/test-client.py:957:test_003()/270 cmd: $NMCLI --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 2362 bytes +stdout: 2685 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2556 -location: clients/tests/test-client.py:949:test_003()/268 +size: 2881 +location: clients/tests/test-client.py:957:test_003()/271 cmd: $NMCLI --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2394 bytes +stdout: 2719 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 503 -location: clients/tests/test-client.py:952:test_003()/269 +size: 551 +location: clients/tests/test-client.py:960:test_003()/272 cmd: $NMCLI --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 346 bytes +stdout: 394 bytes >>> ====================================== NetworkManager connection profiles @@ -12539,15 +13025,16 @@ stdout: 346 bytes UUID TYPE -------------------------------------------------------------------------------------- 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 533 -location: clients/tests/test-client.py:952:test_003()/270 +size: 581 +location: clients/tests/test-client.py:960:test_003()/273 cmd: $NMCLI --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 366 bytes +stdout: 414 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -12555,11 +13042,12 @@ stdout: 366 bytes UUID TYPE ------------------------------------------------------------------------------------------ 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 201 -location: clients/tests/test-client.py:955:test_003()/271 +location: clients/tests/test-client.py:963:test_003()/274 cmd: $NMCLI --pretty --color yes con s ethernet lang: C returncode: 10 @@ -12569,7 +13057,7 @@ Error: ethernet - no such connection profile. <<< size: 223 -location: clients/tests/test-client.py:955:test_003()/272 +location: clients/tests/test-client.py:963:test_003()/275 cmd: $NMCLI --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -12579,7 +13067,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1389 -location: clients/tests/test-client.py:958:test_003()/273 +location: clients/tests/test-client.py:966:test_003()/276 cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -12600,14 +13088,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 1416 -location: clients/tests/test-client.py:958:test_003()/274 +location: clients/tests/test-client.py:966:test_003()/277 cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -12628,14 +13116,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4283 -location: clients/tests/test-client.py:961:test_003()/275 +location: clients/tests/test-client.py:969:test_003()/278 cmd: $NMCLI --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -12702,15 +13190,15 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< size: 4322 -location: clients/tests/test-client.py:961:test_003()/276 +location: clients/tests/test-client.py:969:test_003()/279 cmd: $NMCLI --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -12777,63 +13265,67 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< -size: 985 -location: clients/tests/test-client.py:949:test_003()/277 +size: 1161 +location: clients/tests/test-client.py:957:test_003()/280 cmd: $NMCLI --terse -f ALL con lang: C returncode: 0 -stdout: 847 bytes +stdout: 1022 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 995 -location: clients/tests/test-client.py:949:test_003()/278 +size: 1171 +location: clients/tests/test-client.py:957:test_003()/281 cmd: $NMCLI --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 847 bytes +stdout: 1022 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 248 -location: clients/tests/test-client.py:952:test_003()/279 +size: 289 +location: clients/tests/test-client.py:960:test_003()/282 cmd: $NMCLI --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 258 -location: clients/tests/test-client.py:952:test_003()/280 +size: 299 +location: clients/tests/test-client.py:960:test_003()/283 cmd: $NMCLI --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 188 -location: clients/tests/test-client.py:955:test_003()/281 +location: clients/tests/test-client.py:963:test_003()/284 cmd: $NMCLI --terse con s ethernet lang: C returncode: 10 @@ -12843,7 +13335,7 @@ Error: ethernet - no such connection profile. <<< size: 210 -location: clients/tests/test-client.py:955:test_003()/282 +location: clients/tests/test-client.py:963:test_003()/285 cmd: $NMCLI --terse con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -12853,7 +13345,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 552 -location: clients/tests/test-client.py:958:test_003()/283 +location: clients/tests/test-client.py:966:test_003()/286 cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -12868,13 +13360,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 562 -location: clients/tests/test-client.py:958:test_003()/284 +location: clients/tests/test-client.py:966:test_003()/287 cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -12889,13 +13381,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2191 -location: clients/tests/test-client.py:961:test_003()/285 +location: clients/tests/test-client.py:969:test_003()/288 cmd: $NMCLI --terse -f all dev show eth0 lang: C returncode: 0 @@ -12952,14 +13444,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2201 -location: clients/tests/test-client.py:961:test_003()/286 +location: clients/tests/test-client.py:969:test_003()/289 cmd: $NMCLI --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -13016,62 +13508,66 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 1268 -location: clients/tests/test-client.py:949:test_003()/287 +size: 1443 +location: clients/tests/test-client.py:957:test_003()/290 cmd: $NMCLI --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1117 bytes +stdout: 1292 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1278 -location: clients/tests/test-client.py:949:test_003()/288 +size: 1453 +location: clients/tests/test-client.py:957:test_003()/291 cmd: $NMCLI --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1117 bytes +stdout: 1292 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 260 -location: clients/tests/test-client.py:952:test_003()/289 +size: 301 +location: clients/tests/test-client.py:960:test_003()/292 cmd: $NMCLI --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 270 -location: clients/tests/test-client.py:952:test_003()/290 +size: 311 +location: clients/tests/test-client.py:960:test_003()/293 cmd: $NMCLI --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 200 -location: clients/tests/test-client.py:955:test_003()/291 +location: clients/tests/test-client.py:963:test_003()/294 cmd: $NMCLI --terse --color yes con s ethernet lang: C returncode: 10 @@ -13081,7 +13577,7 @@ Error: ethernet - no such connection profile. <<< size: 222 -location: clients/tests/test-client.py:955:test_003()/292 +location: clients/tests/test-client.py:963:test_003()/295 cmd: $NMCLI --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -13091,7 +13587,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 564 -location: clients/tests/test-client.py:958:test_003()/293 +location: clients/tests/test-client.py:966:test_003()/296 cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -13106,13 +13602,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 574 -location: clients/tests/test-client.py:958:test_003()/294 +location: clients/tests/test-client.py:966:test_003()/297 cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -13127,13 +13623,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2203 -location: clients/tests/test-client.py:961:test_003()/295 +location: clients/tests/test-client.py:969:test_003()/298 cmd: $NMCLI --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -13190,14 +13686,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2213 -location: clients/tests/test-client.py:961:test_003()/296 +location: clients/tests/test-client.py:969:test_003()/299 cmd: $NMCLI --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -13254,66 +13750,70 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 1761 -location: clients/tests/test-client.py:949:test_003()/297 +size: 2084 +location: clients/tests/test-client.py:957:test_003()/300 cmd: $NMCLI --mode tabular -f ALL con lang: C returncode: 0 -stdout: 1615 bytes +stdout: 1938 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 1781 -location: clients/tests/test-client.py:949:test_003()/298 +size: 2106 +location: clients/tests/test-client.py:957:test_003()/301 cmd: $NMCLI --mode tabular -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1625 bytes +stdout: 1950 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 295 -location: clients/tests/test-client.py:952:test_003()/299 +size: 343 +location: clients/tests/test-client.py:960:test_003()/302 cmd: $NMCLI --mode tabular -f UUID,TYPE con lang: C returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 305 -location: clients/tests/test-client.py:952:test_003()/300 +size: 353 +location: clients/tests/test-client.py:960:test_003()/303 cmd: $NMCLI --mode tabular -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 195 -location: clients/tests/test-client.py:955:test_003()/301 +location: clients/tests/test-client.py:963:test_003()/304 cmd: $NMCLI --mode tabular con s ethernet lang: C returncode: 10 @@ -13323,7 +13823,7 @@ Error: ethernet - no such connection profile. <<< size: 217 -location: clients/tests/test-client.py:955:test_003()/302 +location: clients/tests/test-client.py:963:test_003()/305 cmd: $NMCLI --mode tabular con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -13333,31 +13833,31 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 676 -location: clients/tests/test-client.py:958:test_003()/303 +location: clients/tests/test-client.py:966:test_003()/306 cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 stdout: 487 bytes >>> GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 690 -location: clients/tests/test-client.py:958:test_003()/304 +location: clients/tests/test-client.py:966:test_003()/307 cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 stdout: 491 bytes >>> GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2939 -location: clients/tests/test-client.py:961:test_003()/305 +location: clients/tests/test-client.py:969:test_003()/308 cmd: $NMCLI --mode tabular -f all dev show eth0 lang: C returncode: 0 @@ -13385,11 +13885,11 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2970 -location: clients/tests/test-client.py:961:test_003()/306 +location: clients/tests/test-client.py:969:test_003()/309 cmd: $NMCLI --mode tabular -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -13417,63 +13917,67 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 2043 -location: clients/tests/test-client.py:949:test_003()/307 +size: 2366 +location: clients/tests/test-client.py:957:test_003()/310 cmd: $NMCLI --mode tabular --color yes -f ALL con lang: C returncode: 0 -stdout: 1885 bytes +stdout: 2208 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2063 -location: clients/tests/test-client.py:949:test_003()/308 +size: 2388 +location: clients/tests/test-client.py:957:test_003()/311 cmd: $NMCLI --mode tabular --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1895 bytes +stdout: 2220 bytes >>> NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 307 -location: clients/tests/test-client.py:952:test_003()/309 +size: 355 +location: clients/tests/test-client.py:960:test_003()/312 cmd: $NMCLI --mode tabular --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 317 -location: clients/tests/test-client.py:952:test_003()/310 +size: 365 +location: clients/tests/test-client.py:960:test_003()/313 cmd: $NMCLI --mode tabular --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 144 bytes +stdout: 192 bytes >>> UUID TYPE 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 207 -location: clients/tests/test-client.py:955:test_003()/311 +location: clients/tests/test-client.py:963:test_003()/314 cmd: $NMCLI --mode tabular --color yes con s ethernet lang: C returncode: 10 @@ -13483,7 +13987,7 @@ Error: ethernet - no such connection profile. <<< size: 229 -location: clients/tests/test-client.py:955:test_003()/312 +location: clients/tests/test-client.py:963:test_003()/315 cmd: $NMCLI --mode tabular --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -13493,31 +13997,31 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 688 -location: clients/tests/test-client.py:958:test_003()/313 +location: clients/tests/test-client.py:966:test_003()/316 cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 stdout: 487 bytes >>> GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 702 -location: clients/tests/test-client.py:958:test_003()/314 +location: clients/tests/test-client.py:966:test_003()/317 cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 stdout: 491 bytes >>> GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 2951 -location: clients/tests/test-client.py:961:test_003()/315 +location: clients/tests/test-client.py:969:test_003()/318 cmd: $NMCLI --mode tabular --color yes -f all dev show eth0 lang: C returncode: 0 @@ -13545,11 +14049,11 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2982 -location: clients/tests/test-client.py:961:test_003()/316 +location: clients/tests/test-client.py:969:test_003()/319 cmd: $NMCLI --mode tabular --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -13577,51 +14081,53 @@ GROUP OPTION DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 2247 -location: clients/tests/test-client.py:949:test_003()/317 +size: 2570 +location: clients/tests/test-client.py:957:test_003()/320 cmd: $NMCLI --mode tabular --pretty -f ALL con lang: C returncode: 0 -stdout: 2092 bytes +stdout: 2415 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2289 -location: clients/tests/test-client.py:949:test_003()/318 +size: 2614 +location: clients/tests/test-client.py:957:test_003()/321 cmd: $NMCLI --mode tabular --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2124 bytes +stdout: 2449 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 506 -location: clients/tests/test-client.py:952:test_003()/319 +size: 554 +location: clients/tests/test-client.py:960:test_003()/322 cmd: $NMCLI --mode tabular --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 346 bytes +stdout: 394 bytes >>> ====================================== NetworkManager connection profiles @@ -13629,15 +14135,16 @@ stdout: 346 bytes UUID TYPE -------------------------------------------------------------------------------------- 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 536 -location: clients/tests/test-client.py:952:test_003()/320 +size: 584 +location: clients/tests/test-client.py:960:test_003()/323 cmd: $NMCLI --mode tabular --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 366 bytes +stdout: 414 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -13645,11 +14152,12 @@ stdout: 366 bytes UUID TYPE ------------------------------------------------------------------------------------------ 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 204 -location: clients/tests/test-client.py:955:test_003()/321 +location: clients/tests/test-client.py:963:test_003()/324 cmd: $NMCLI --mode tabular --pretty con s ethernet lang: C returncode: 10 @@ -13659,7 +14167,7 @@ Error: ethernet - no such connection profile. <<< size: 226 -location: clients/tests/test-client.py:955:test_003()/322 +location: clients/tests/test-client.py:963:test_003()/325 cmd: $NMCLI --mode tabular --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -13669,7 +14177,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1232 -location: clients/tests/test-client.py:958:test_003()/323 +location: clients/tests/test-client.py:966:test_003()/326 cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -13683,12 +14191,12 @@ stdout: 1033 bytes ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 1277 -location: clients/tests/test-client.py:958:test_003()/324 +location: clients/tests/test-client.py:966:test_003()/327 cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -13702,12 +14210,12 @@ stdout: 1068 bytes =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4420 -location: clients/tests/test-client.py:961:test_003()/325 +location: clients/tests/test-client.py:969:test_003()/328 cmd: $NMCLI --mode tabular --pretty -f all dev show eth0 lang: C returncode: 0 @@ -13746,11 +14254,11 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 4488 -location: clients/tests/test-client.py:961:test_003()/326 +location: clients/tests/test-client.py:969:test_003()/329 cmd: $NMCLI --mode tabular --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -13789,51 +14297,53 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 2529 -location: clients/tests/test-client.py:949:test_003()/327 +size: 2852 +location: clients/tests/test-client.py:957:test_003()/330 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 2362 bytes +stdout: 2685 bytes >>> ====================================== NetworkManager connection profiles ====================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 never no 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 no -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 2571 -location: clients/tests/test-client.py:949:test_003()/328 +size: 2896 +location: clients/tests/test-client.py:957:test_003()/331 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 2394 bytes +stdout: 2719 bytes >>> ========================================== Profile połączeń usługi NetworkManager ========================================== NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE FILENAME ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet -ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 -- /etc/NetworkManager/system-connections/ethernet +ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/4 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- /etc/NetworkManager/system-connections/ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- /etc/NetworkManager/system-connections/con-1 +con-gsm1 UUID-con-gsm1-REPLACED-REPLACED-REPL gsm 0 nigdy nie 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 nie -- -- -- -- /etc/NetworkManager/system-connections/con-gsm1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- /etc/NetworkManager/system-connections/con-xx1 <<< -size: 518 -location: clients/tests/test-client.py:952:test_003()/329 +size: 566 +location: clients/tests/test-client.py:960:test_003()/332 cmd: $NMCLI --mode tabular --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 346 bytes +stdout: 394 bytes >>> ====================================== NetworkManager connection profiles @@ -13841,15 +14351,16 @@ stdout: 346 bytes UUID TYPE -------------------------------------------------------------------------------------- 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< -size: 548 -location: clients/tests/test-client.py:952:test_003()/330 +size: 596 +location: clients/tests/test-client.py:960:test_003()/333 cmd: $NMCLI --mode tabular --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 366 bytes +stdout: 414 bytes >>> ========================================== Profile połączeń usługi NetworkManager @@ -13857,11 +14368,12 @@ stdout: 366 bytes UUID TYPE ------------------------------------------------------------------------------------------ 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL gsm UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet <<< size: 216 -location: clients/tests/test-client.py:955:test_003()/331 +location: clients/tests/test-client.py:963:test_003()/334 cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet lang: C returncode: 10 @@ -13871,7 +14383,7 @@ Error: ethernet - no such connection profile. <<< size: 238 -location: clients/tests/test-client.py:955:test_003()/332 +location: clients/tests/test-client.py:963:test_003()/335 cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -13881,7 +14393,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1244 -location: clients/tests/test-client.py:958:test_003()/333 +location: clients/tests/test-client.py:966:test_003()/336 cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -13895,12 +14407,12 @@ stdout: 1033 bytes ====================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 deactivating no no -- no /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 1289 -location: clients/tests/test-client.py:958:test_003()/334 +location: clients/tests/test-client.py:966:test_003()/337 cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -13914,12 +14426,12 @@ stdout: 1068 bytes =========================================================================== GROUP NAME UUID DEVICES STATE DEFAULT DEFAULT6 SPEC-OBJECT VPN DBUS-PATH CON-PATH ZONE MASTER-PATH ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/3 -- -- +GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 dezaktywowanie nie nie -- nie /org/freedesktop/NetworkManager/ActiveConnection/1 /org/freedesktop/NetworkManager/Settings/Connection/4 -- -- <<< size: 4432 -location: clients/tests/test-client.py:961:test_003()/335 +location: clients/tests/test-client.py:969:test_003()/338 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -13958,11 +14470,11 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 4500 -location: clients/tests/test-client.py:961:test_003()/336 +location: clients/tests/test-client.py:969:test_003()/339 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -14001,59 +14513,63 @@ DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 1000 -location: clients/tests/test-client.py:949:test_003()/337 +size: 1176 +location: clients/tests/test-client.py:957:test_003()/340 cmd: $NMCLI --mode tabular --terse -f ALL con lang: C returncode: 0 -stdout: 847 bytes +stdout: 1022 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1010 -location: clients/tests/test-client.py:949:test_003()/338 +size: 1186 +location: clients/tests/test-client.py:957:test_003()/341 cmd: $NMCLI --mode tabular --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 847 bytes +stdout: 1022 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 263 -location: clients/tests/test-client.py:952:test_003()/339 +size: 304 +location: clients/tests/test-client.py:960:test_003()/342 cmd: $NMCLI --mode tabular --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 273 -location: clients/tests/test-client.py:952:test_003()/340 +size: 314 +location: clients/tests/test-client.py:960:test_003()/343 cmd: $NMCLI --mode tabular --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 203 -location: clients/tests/test-client.py:955:test_003()/341 +location: clients/tests/test-client.py:963:test_003()/344 cmd: $NMCLI --mode tabular --terse con s ethernet lang: C returncode: 10 @@ -14063,7 +14579,7 @@ Error: ethernet - no such connection profile. <<< size: 225 -location: clients/tests/test-client.py:955:test_003()/342 +location: clients/tests/test-client.py:963:test_003()/345 cmd: $NMCLI --mode tabular --terse con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -14073,27 +14589,27 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 386 -location: clients/tests/test-client.py:958:test_003()/343 +location: clients/tests/test-client.py:966:test_003()/346 cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 stdout: 189 bytes >>> -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 396 -location: clients/tests/test-client.py:958:test_003()/344 +location: clients/tests/test-client.py:966:test_003()/347 cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 stdout: 189 bytes >>> -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 1371 -location: clients/tests/test-client.py:961:test_003()/345 +location: clients/tests/test-client.py:969:test_003()/348 cmd: $NMCLI --mode tabular --terse -f all dev show eth0 lang: C returncode: 0 @@ -14106,11 +14622,11 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 1381 -location: clients/tests/test-client.py:961:test_003()/346 +location: clients/tests/test-client.py:969:test_003()/349 cmd: $NMCLI --mode tabular --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -14123,59 +14639,63 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 1283 -location: clients/tests/test-client.py:949:test_003()/347 +size: 1458 +location: clients/tests/test-client.py:957:test_003()/350 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1117 bytes +stdout: 1292 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1293 -location: clients/tests/test-client.py:949:test_003()/348 +size: 1468 +location: clients/tests/test-client.py:957:test_003()/351 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1117 bytes +stdout: 1292 bytes >>> -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet -ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/3:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth1:activated:/org/freedesktop/NetworkManager/ActiveConnection/2::/etc/NetworkManager/system-connections/ethernet +ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet::::::/org/freedesktop/NetworkManager/Settings/Connection/4:yes:eth0:deactivating:/org/freedesktop/NetworkManager/ActiveConnection/1::/etc/NetworkManager/system-connections/ethernet con-1:5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/1:no:::::/etc/NetworkManager/system-connections/con-1 +con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm:0:never:no:0:no:/org/freedesktop/NetworkManager/Settings/Connection/3:no:::::/etc/NetworkManager/system-connections/con-gsm1 con-xx1:UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet:0:never:yes:0:no:/org/freedesktop/NetworkManager/Settings/Connection/2:no:::::/etc/NetworkManager/system-connections/con-xx1 <<< -size: 275 -location: clients/tests/test-client.py:952:test_003()/349 +size: 316 +location: clients/tests/test-client.py:960:test_003()/352 cmd: $NMCLI --mode tabular --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< -size: 285 -location: clients/tests/test-client.py:952:test_003()/350 +size: 326 +location: clients/tests/test-client.py:960:test_003()/353 cmd: $NMCLI --mode tabular --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 104 bytes +stdout: 145 bytes >>> 5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet +UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet <<< size: 215 -location: clients/tests/test-client.py:955:test_003()/351 +location: clients/tests/test-client.py:963:test_003()/354 cmd: $NMCLI --mode tabular --terse --color yes con s ethernet lang: C returncode: 10 @@ -14185,7 +14705,7 @@ Error: ethernet - no such connection profile. <<< size: 237 -location: clients/tests/test-client.py:955:test_003()/352 +location: clients/tests/test-client.py:963:test_003()/355 cmd: $NMCLI --mode tabular --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -14195,27 +14715,27 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 398 -location: clients/tests/test-client.py:958:test_003()/353 +location: clients/tests/test-client.py:966:test_003()/356 cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 stdout: 189 bytes >>> -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 408 -location: clients/tests/test-client.py:958:test_003()/354 +location: clients/tests/test-client.py:966:test_003()/357 cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 stdout: 189 bytes >>> -GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/3:: +GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4:: <<< size: 1383 -location: clients/tests/test-client.py:961:test_003()/355 +location: clients/tests/test-client.py:969:test_003()/358 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -14228,11 +14748,11 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 1393 -location: clients/tests/test-client.py:961:test_003()/356 +location: clients/tests/test-client.py:969:test_003()/359 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -14245,15 +14765,15 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348 DHCP4: IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8 -CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 3411 -location: clients/tests/test-client.py:949:test_003()/357 +size: 4194 +location: clients/tests/test-client.py:957:test_003()/360 cmd: $NMCLI --mode multiline -f ALL con lang: C returncode: 0 -stdout: 3263 bytes +stdout: 4046 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -14263,7 +14783,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -14278,7 +14798,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -14300,6 +14820,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -14317,12 +14852,12 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 3428 -location: clients/tests/test-client.py:949:test_003()/358 +size: 4214 +location: clients/tests/test-client.py:957:test_003()/361 cmd: $NMCLI --mode multiline -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3270 bytes +stdout: 4056 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -14332,7 +14867,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -14347,7 +14882,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -14369,6 +14904,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -14386,34 +14936,38 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 405 -location: clients/tests/test-client.py:952:test_003()/359 +size: 526 +location: clients/tests/test-client.py:960:test_003()/362 cmd: $NMCLI --mode multiline -f UUID,TYPE con lang: C returncode: 0 -stdout: 252 bytes +stdout: 373 bytes >>> UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< -size: 415 -location: clients/tests/test-client.py:952:test_003()/360 +size: 536 +location: clients/tests/test-client.py:960:test_003()/363 cmd: $NMCLI --mode multiline -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 252 bytes +stdout: 373 bytes >>> UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< size: 197 -location: clients/tests/test-client.py:955:test_003()/361 +location: clients/tests/test-client.py:963:test_003()/364 cmd: $NMCLI --mode multiline con s ethernet lang: C returncode: 10 @@ -14423,7 +14977,7 @@ Error: ethernet - no such connection profile. <<< size: 219 -location: clients/tests/test-client.py:955:test_003()/362 +location: clients/tests/test-client.py:963:test_003()/365 cmd: $NMCLI --mode multiline con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -14433,7 +14987,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 858 -location: clients/tests/test-client.py:958:test_003()/363 +location: clients/tests/test-client.py:966:test_003()/366 cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -14448,13 +15002,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 873 -location: clients/tests/test-client.py:958:test_003()/364 +location: clients/tests/test-client.py:966:test_003()/367 cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -14469,13 +15023,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3428 -location: clients/tests/test-client.py:961:test_003()/365 +location: clients/tests/test-client.py:969:test_003()/368 cmd: $NMCLI --mode multiline -f all dev show eth0 lang: C returncode: 0 @@ -14532,14 +15086,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 3461 -location: clients/tests/test-client.py:961:test_003()/366 +location: clients/tests/test-client.py:969:test_003()/369 cmd: $NMCLI --mode multiline -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -14596,18 +15150,18 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 3693 -location: clients/tests/test-client.py:949:test_003()/367 +size: 4476 +location: clients/tests/test-client.py:957:test_003()/370 cmd: $NMCLI --mode multiline --color yes -f ALL con lang: C returncode: 0 -stdout: 3533 bytes +stdout: 4316 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -14617,7 +15171,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -14632,7 +15186,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -14654,6 +15208,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -14671,12 +15240,12 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 3710 -location: clients/tests/test-client.py:949:test_003()/368 +size: 4496 +location: clients/tests/test-client.py:957:test_003()/371 cmd: $NMCLI --mode multiline --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3540 bytes +stdout: 4326 bytes >>> NAME: ethernet UUID: UUID-ethernet-REPLACED-REPLACED-REPL @@ -14686,7 +15255,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -14701,7 +15270,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -14723,6 +15292,21 @@ STATE: -- ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -14740,34 +15324,38 @@ SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-xx1 <<< -size: 417 -location: clients/tests/test-client.py:952:test_003()/369 +size: 538 +location: clients/tests/test-client.py:960:test_003()/372 cmd: $NMCLI --mode multiline --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 252 bytes +stdout: 373 bytes >>> UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< -size: 427 -location: clients/tests/test-client.py:952:test_003()/370 +size: 548 +location: clients/tests/test-client.py:960:test_003()/373 cmd: $NMCLI --mode multiline --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 252 bytes +stdout: 373 bytes >>> UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet <<< size: 209 -location: clients/tests/test-client.py:955:test_003()/371 +location: clients/tests/test-client.py:963:test_003()/374 cmd: $NMCLI --mode multiline --color yes con s ethernet lang: C returncode: 10 @@ -14777,7 +15365,7 @@ Error: ethernet - no such connection profile. <<< size: 231 -location: clients/tests/test-client.py:955:test_003()/372 +location: clients/tests/test-client.py:963:test_003()/375 cmd: $NMCLI --mode multiline --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -14787,7 +15375,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 870 -location: clients/tests/test-client.py:958:test_003()/373 +location: clients/tests/test-client.py:966:test_003()/376 cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -14802,13 +15390,13 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 885 -location: clients/tests/test-client.py:958:test_003()/374 +location: clients/tests/test-client.py:966:test_003()/377 cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -14823,13 +15411,13 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- <<< size: 3440 -location: clients/tests/test-client.py:961:test_003()/375 +location: clients/tests/test-client.py:969:test_003()/378 cmd: $NMCLI --mode multiline --color yes -f all dev show eth0 lang: C returncode: 0 @@ -14886,14 +15474,14 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 3473 -location: clients/tests/test-client.py:961:test_003()/376 +location: clients/tests/test-client.py:969:test_003()/379 cmd: $NMCLI --mode multiline --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -14950,18 +15538,18 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 3957 -location: clients/tests/test-client.py:949:test_003()/377 +size: 4820 +location: clients/tests/test-client.py:957:test_003()/380 cmd: $NMCLI --mode multiline --pretty -f ALL con lang: C returncode: 0 -stdout: 3800 bytes +stdout: 4663 bytes >>> =============================================================================== NetworkManager connection profiles @@ -14974,7 +15562,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -14990,7 +15578,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -15014,6 +15602,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -15032,12 +15636,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 3980 -location: clients/tests/test-client.py:949:test_003()/378 +size: 4846 +location: clients/tests/test-client.py:957:test_003()/381 cmd: $NMCLI --mode multiline --pretty -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 3813 bytes +stdout: 4679 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -15050,7 +15654,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -15066,7 +15670,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -15090,6 +15694,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -15108,12 +15728,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 791 -location: clients/tests/test-client.py:952:test_003()/379 +size: 992 +location: clients/tests/test-client.py:960:test_003()/382 cmd: $NMCLI --mode multiline --pretty -f UUID,TYPE con lang: C returncode: 0 -stdout: 629 bytes +stdout: 830 bytes >>> =============================================================================== NetworkManager connection profiles @@ -15121,17 +15741,20 @@ stdout: 629 bytes UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< -size: 807 -location: clients/tests/test-client.py:952:test_003()/380 +size: 1008 +location: clients/tests/test-client.py:960:test_003()/383 cmd: $NMCLI --mode multiline --pretty -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 635 bytes +stdout: 836 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -15139,13 +15762,16 @@ stdout: 635 bytes UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< size: 206 -location: clients/tests/test-client.py:955:test_003()/381 +location: clients/tests/test-client.py:963:test_003()/384 cmd: $NMCLI --mode multiline --pretty con s ethernet lang: C returncode: 10 @@ -15155,7 +15781,7 @@ Error: ethernet - no such connection profile. <<< size: 228 -location: clients/tests/test-client.py:955:test_003()/382 +location: clients/tests/test-client.py:963:test_003()/385 cmd: $NMCLI --mode multiline --pretty con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -15165,7 +15791,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1394 -location: clients/tests/test-client.py:958:test_003()/383 +location: clients/tests/test-client.py:966:test_003()/386 cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -15186,14 +15812,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 1421 -location: clients/tests/test-client.py:958:test_003()/384 +location: clients/tests/test-client.py:966:test_003()/387 cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -15214,14 +15840,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4288 -location: clients/tests/test-client.py:961:test_003()/385 +location: clients/tests/test-client.py:969:test_003()/388 cmd: $NMCLI --mode multiline --pretty -f all dev show eth0 lang: C returncode: 0 @@ -15288,15 +15914,15 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< size: 4327 -location: clients/tests/test-client.py:961:test_003()/386 +location: clients/tests/test-client.py:969:test_003()/389 cmd: $NMCLI --mode multiline --pretty -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -15363,19 +15989,19 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< -size: 4239 -location: clients/tests/test-client.py:949:test_003()/387 +size: 5102 +location: clients/tests/test-client.py:957:test_003()/390 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con lang: C returncode: 0 -stdout: 4070 bytes +stdout: 4933 bytes >>> =============================================================================== NetworkManager connection profiles @@ -15388,7 +16014,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth1 STATE: activated @@ -15404,7 +16030,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: yes DEVICE: eth0 STATE: deactivating @@ -15428,6 +16054,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: never +AUTOCONNECT: no +AUTOCONNECT-PRIORITY: 0 +READONLY: no +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: no +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -15446,12 +16088,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 4262 -location: clients/tests/test-client.py:949:test_003()/388 +size: 5128 +location: clients/tests/test-client.py:957:test_003()/391 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 4083 bytes +stdout: 4949 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -15464,7 +16106,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth1 STATE: aktywowano @@ -15480,7 +16122,7 @@ TIMESTAMP-REAL: -- AUTOCONNECT: -- AUTOCONNECT-PRIORITY: -- READONLY: -- -DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE: tak DEVICE: eth0 STATE: dezaktywowanie @@ -15504,6 +16146,22 @@ ACTIVE-PATH: -- SLAVE: -- FILENAME: /etc/NetworkManager/system-connections/con-1 ------------------------------------------------------------------------------- +NAME: con-gsm1 +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +TIMESTAMP: 0 +TIMESTAMP-REAL: nigdy +AUTOCONNECT: nie +AUTOCONNECT-PRIORITY: 0 +READONLY: nie +DBUS-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE: nie +DEVICE: -- +STATE: -- +ACTIVE-PATH: -- +SLAVE: -- +FILENAME: /etc/NetworkManager/system-connections/con-gsm1 +------------------------------------------------------------------------------- NAME: con-xx1 UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet @@ -15522,12 +16180,12 @@ FILENAME: /etc/NetworkManager/system-connections/c ------------------------------------------------------------------------------- <<< -size: 803 -location: clients/tests/test-client.py:952:test_003()/389 +size: 1004 +location: clients/tests/test-client.py:960:test_003()/392 cmd: $NMCLI --mode multiline --pretty --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 629 bytes +stdout: 830 bytes >>> =============================================================================== NetworkManager connection profiles @@ -15535,17 +16193,20 @@ stdout: 629 bytes UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< -size: 819 -location: clients/tests/test-client.py:952:test_003()/390 +size: 1020 +location: clients/tests/test-client.py:960:test_003()/393 cmd: $NMCLI --mode multiline --pretty --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 635 bytes +stdout: 836 bytes >>> =============================================================================== Profile połączeń usługi NetworkManager @@ -15553,13 +16214,16 @@ stdout: 635 bytes UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE: ethernet ------------------------------------------------------------------------------- +UUID: UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE: gsm +------------------------------------------------------------------------------- UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE: ethernet ------------------------------------------------------------------------------- <<< size: 218 -location: clients/tests/test-client.py:955:test_003()/391 +location: clients/tests/test-client.py:963:test_003()/394 cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet lang: C returncode: 10 @@ -15569,7 +16233,7 @@ Error: ethernet - no such connection profile. <<< size: 240 -location: clients/tests/test-client.py:955:test_003()/392 +location: clients/tests/test-client.py:963:test_003()/395 cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -15579,7 +16243,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 1406 -location: clients/tests/test-client.py:958:test_003()/393 +location: clients/tests/test-client.py:966:test_003()/396 cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -15600,14 +16264,14 @@ GENERAL.DEFAULT6: no GENERAL.SPEC-OBJECT: -- GENERAL.VPN: no GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 1433 -location: clients/tests/test-client.py:958:test_003()/394 +location: clients/tests/test-client.py:966:test_003()/397 cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -15628,14 +16292,14 @@ GENERAL.DEFAULT6: nie GENERAL.SPEC-OBJECT: -- GENERAL.VPN: nie GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: -- GENERAL.MASTER-PATH: -- ------------------------------------------------------------------------------- <<< size: 4300 -location: clients/tests/test-client.py:961:test_003()/395 +location: clients/tests/test-client.py:969:test_003()/398 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0 lang: C returncode: 0 @@ -15702,15 +16366,15 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< size: 4339 -location: clients/tests/test-client.py:961:test_003()/396 +location: clients/tests/test-client.py:969:test_003()/399 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -15777,19 +16441,19 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8 ------------------------------------------------------------------------------- -CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 ------------------------------------------------------------------------------- <<< -size: 1559 -location: clients/tests/test-client.py:949:test_003()/397 +size: 1873 +location: clients/tests/test-client.py:957:test_003()/400 cmd: $NMCLI --mode multiline --terse -f ALL con lang: C returncode: 0 -stdout: 1403 bytes +stdout: 1717 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -15799,7 +16463,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -15814,7 +16478,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -15836,6 +16500,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -15853,12 +16532,12 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1569 -location: clients/tests/test-client.py:949:test_003()/398 +size: 1883 +location: clients/tests/test-client.py:957:test_003()/401 cmd: $NMCLI --mode multiline --terse -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1403 bytes +stdout: 1717 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -15868,7 +16547,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -15883,7 +16562,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -15905,6 +16584,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -15922,34 +16616,38 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 285 -location: clients/tests/test-client.py:952:test_003()/399 +size: 336 +location: clients/tests/test-client.py:960:test_003()/402 cmd: $NMCLI --mode multiline --terse -f UUID,TYPE con lang: C returncode: 0 -stdout: 124 bytes +stdout: 175 bytes >>> UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< -size: 295 -location: clients/tests/test-client.py:952:test_003()/400 +size: 346 +location: clients/tests/test-client.py:960:test_003()/403 cmd: $NMCLI --mode multiline --terse -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 124 bytes +stdout: 175 bytes >>> UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< size: 205 -location: clients/tests/test-client.py:955:test_003()/401 +location: clients/tests/test-client.py:963:test_003()/404 cmd: $NMCLI --mode multiline --terse con s ethernet lang: C returncode: 10 @@ -15959,7 +16657,7 @@ Error: ethernet - no such connection profile. <<< size: 227 -location: clients/tests/test-client.py:955:test_003()/402 +location: clients/tests/test-client.py:963:test_003()/405 cmd: $NMCLI --mode multiline --terse con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -15969,7 +16667,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 569 -location: clients/tests/test-client.py:958:test_003()/403 +location: clients/tests/test-client.py:966:test_003()/406 cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -15984,13 +16682,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 579 -location: clients/tests/test-client.py:958:test_003()/404 +location: clients/tests/test-client.py:966:test_003()/407 cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -16005,13 +16703,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2208 -location: clients/tests/test-client.py:961:test_003()/405 +location: clients/tests/test-client.py:969:test_003()/408 cmd: $NMCLI --mode multiline --terse -f all dev show eth0 lang: C returncode: 0 @@ -16068,14 +16766,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2218 -location: clients/tests/test-client.py:961:test_003()/406 +location: clients/tests/test-client.py:969:test_003()/409 cmd: $NMCLI --mode multiline --terse -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -16132,18 +16830,18 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< -size: 1841 -location: clients/tests/test-client.py:949:test_003()/407 +size: 2155 +location: clients/tests/test-client.py:957:test_003()/410 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con lang: C returncode: 0 -stdout: 1673 bytes +stdout: 1987 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -16153,7 +16851,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -16168,7 +16866,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -16190,6 +16888,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -16207,12 +16920,12 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 1851 -location: clients/tests/test-client.py:949:test_003()/408 +size: 2165 +location: clients/tests/test-client.py:957:test_003()/411 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con lang: pl_PL.UTF-8 returncode: 0 -stdout: 1673 bytes +stdout: 1987 bytes >>> NAME:ethernet UUID:UUID-ethernet-REPLACED-REPLACED-REPL @@ -16222,7 +16935,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth1 STATE:activated @@ -16237,7 +16950,7 @@ TIMESTAMP-REAL: AUTOCONNECT: AUTOCONNECT-PRIORITY: READONLY: -DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 ACTIVE:yes DEVICE:eth0 STATE:deactivating @@ -16259,6 +16972,21 @@ STATE: ACTIVE-PATH: SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-1 +NAME:con-gsm1 +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm +TIMESTAMP:0 +TIMESTAMP-REAL:never +AUTOCONNECT:no +AUTOCONNECT-PRIORITY:0 +READONLY:no +DBUS-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +ACTIVE:no +DEVICE: +STATE: +ACTIVE-PATH: +SLAVE: +FILENAME:/etc/NetworkManager/system-connections/con-gsm1 NAME:con-xx1 UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet @@ -16276,34 +17004,38 @@ SLAVE: FILENAME:/etc/NetworkManager/system-connections/con-xx1 <<< -size: 297 -location: clients/tests/test-client.py:952:test_003()/409 +size: 348 +location: clients/tests/test-client.py:960:test_003()/412 cmd: $NMCLI --mode multiline --terse --color yes -f UUID,TYPE con lang: C returncode: 0 -stdout: 124 bytes +stdout: 175 bytes >>> UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< -size: 307 -location: clients/tests/test-client.py:952:test_003()/410 +size: 358 +location: clients/tests/test-client.py:960:test_003()/413 cmd: $NMCLI --mode multiline --terse --color yes -f UUID,TYPE con lang: pl_PL.UTF-8 returncode: 0 -stdout: 124 bytes +stdout: 175 bytes >>> UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d TYPE:802-3-ethernet +UUID:UUID-con-gsm1-REPLACED-REPLACED-REPL +TYPE:gsm UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA TYPE:802-3-ethernet <<< size: 217 -location: clients/tests/test-client.py:955:test_003()/411 +location: clients/tests/test-client.py:963:test_003()/414 cmd: $NMCLI --mode multiline --terse --color yes con s ethernet lang: C returncode: 10 @@ -16313,7 +17045,7 @@ Error: ethernet - no such connection profile. <<< size: 239 -location: clients/tests/test-client.py:955:test_003()/412 +location: clients/tests/test-client.py:963:test_003()/415 cmd: $NMCLI --mode multiline --terse --color yes con s ethernet lang: pl_PL.UTF-8 returncode: 10 @@ -16323,7 +17055,7 @@ Błąd: ethernet — nie ma takiego profilu połączenia. <<< size: 581 -location: clients/tests/test-client.py:958:test_003()/413 +location: clients/tests/test-client.py:966:test_003()/416 cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: C returncode: 0 @@ -16338,13 +17070,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 591 -location: clients/tests/test-client.py:958:test_003()/414 +location: clients/tests/test-client.py:966:test_003()/417 cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1 lang: pl_PL.UTF-8 returncode: 0 @@ -16359,13 +17091,13 @@ GENERAL.DEFAULT6:no GENERAL.SPEC-OBJECT: GENERAL.VPN:no GENERAL.DBUS-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1 -GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/3 +GENERAL.CON-PATH:/org/freedesktop/NetworkManager/Settings/Connection/4 GENERAL.ZONE: GENERAL.MASTER-PATH: <<< size: 2220 -location: clients/tests/test-client.py:961:test_003()/415 +location: clients/tests/test-client.py:969:test_003()/418 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0 lang: C returncode: 0 @@ -16422,14 +17154,14 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< size: 2230 -location: clients/tests/test-client.py:961:test_003()/416 +location: clients/tests/test-client.py:969:test_003()/419 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0 lang: pl_PL.UTF-8 returncode: 0 @@ -16486,9 +17218,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1 DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5 DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6 DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8 -CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} +CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,4} CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 -CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/3 +CONNECTIONS.AVAILABLE-CONNECTIONS[3]: | /org/freedesktop/NetworkManager/Settings/Connection/4 <<< diff --git a/clients/tests/test-client.check-on-disk/test_004.expected b/clients/tests/test-client.check-on-disk/test_004.expected index bef96a6c3b..26915dd330 100644 --- a/clients/tests/test-client.check-on-disk/test_004.expected +++ b/clients/tests/test-client.check-on-disk/test_004.expected @@ -1,5 +1,5 @@ size: 252 -location: clients/tests/test-client.py:972:test_004()/1 +location: clients/tests/test-client.py:980:test_004()/1 cmd: $NMCLI c add type wifi ifname '*' ssid foobar con-name con-xx1 lang: C returncode: 0 @@ -9,7 +9,7 @@ Connection 'con-xx1' (UUID-con-xx1-REPLACED-REPLACED-REPLA) successfully added. <<< size: 228 -location: clients/tests/test-client.py:974:test_004()/2 +location: clients/tests/test-client.py:982:test_004()/2 cmd: $NMCLI connection mod con-xx1 ip.gateway '' lang: C returncode: 2 @@ -19,7 +19,7 @@ Error: invalid or not allowed setting 'ip': 'ip' is ambiguous: ipv4, ipv6. <<< size: 317 -location: clients/tests/test-client.py:975:test_004()/3 +location: clients/tests/test-client.py:983:test_004()/3 cmd: $NMCLI connection mod con-xx1 ipv4.gateway 172.16.0.1 lang: pl_PL.UTF-8 returncode: 1 @@ -29,7 +29,7 @@ Błąd: zmodyfikowanie połączenia „con-xx1” się nie powiodło: ipv4.gatew <<< size: 277 -location: clients/tests/test-client.py:976:test_004()/4 +location: clients/tests/test-client.py:984:test_004()/4 cmd: $NMCLI connection mod con-xx1 ipv6.gateway ::99 lang: C returncode: 1 @@ -39,7 +39,7 @@ Error: Failed to modify connection 'con-xx1': ipv6.gateway: gateway cannot be se <<< size: 267 -location: clients/tests/test-client.py:977:test_004()/5 +location: clients/tests/test-client.py:985:test_004()/5 cmd: $NMCLI connection mod con-xx1 802.abc '' lang: C returncode: 2 @@ -49,17 +49,17 @@ Error: invalid or not allowed setting '802': '802' is ambiguous: 802-11-wireless <<< size: 136 -location: clients/tests/test-client.py:978:test_004()/6 +location: clients/tests/test-client.py:986:test_004()/6 cmd: $NMCLI connection mod con-xx1 802-11-wireless.band a lang: C returncode: 0 size: 242 -location: clients/tests/test-client.py:979:test_004()/7 +location: clients/tests/test-client.py:987:test_004()/7 cmd: $NMCLI connection mod con-xx1 ipv4.addresses 192.168.77.5/24 ipv4.routes '2.3.4.5/32 192.168.77.1' ipv6.addresses 1:2:3:4::6/64 ipv6.routes 1:2:3:4:5:6::5/128 lang: C returncode: 0 size: 4047 -location: clients/tests/test-client.py:981:test_004()/8 +location: clients/tests/test-client.py:989:test_004()/8 cmd: $NMCLI con s con-xx1 lang: C returncode: 0 @@ -152,7 +152,7 @@ proxy.pac-script: -- <<< size: 4075 -location: clients/tests/test-client.py:981:test_004()/9 +location: clients/tests/test-client.py:989:test_004()/9 cmd: $NMCLI con s con-xx1 lang: pl_PL.UTF-8 returncode: 0 @@ -245,7 +245,7 @@ proxy.pac-script: -- <<< size: 320 -location: clients/tests/test-client.py:988:test_004()/10 +location: clients/tests/test-client.py:996:test_004()/10 cmd: $NMCLI connection add type vpn con-name con-vpn-1 ifname '*' vpn-type openvpn vpn.data 'key1 = val1, key2 = val2, key3=val3' lang: C returncode: 0 @@ -255,7 +255,7 @@ Connection 'con-vpn-1' (UUID-con-vpn-1-REPLACED-REPLACED-REP) successfully added <<< size: 392 -location: clients/tests/test-client.py:991:test_004()/11 +location: clients/tests/test-client.py:999:test_004()/11 cmd: $NMCLI con s lang: C returncode: 0 @@ -268,7 +268,7 @@ con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi -- <<< size: 402 -location: clients/tests/test-client.py:991:test_004()/12 +location: clients/tests/test-client.py:999:test_004()/12 cmd: $NMCLI con s lang: pl_PL.UTF-8 returncode: 0 @@ -280,8 +280,8 @@ con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP vpn -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi -- <<< -size: 3514 -location: clients/tests/test-client.py:993:test_004()/13 +size: 3515 +location: clients/tests/test-client.py:1001:test_004()/13 cmd: $NMCLI con s con-vpn-1 lang: C returncode: 0 @@ -362,8 +362,8 @@ proxy.pac-url: -- proxy.pac-script: -- <<< -size: 3534 -location: clients/tests/test-client.py:993:test_004()/14 +size: 3535 +location: clients/tests/test-client.py:1001:test_004()/14 cmd: $NMCLI con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -444,8 +444,8 @@ proxy.pac-url: -- proxy.pac-script: -- <<< -size: 239 -location: clients/tests/test-client.py:995:test_004()/15 +size: 240 +location: clients/tests/test-client.py:1003:test_004()/15 cmd: $NMCLI con up con-xx1 lang: C returncode: 0 @@ -454,8 +454,8 @@ stdout: 106 bytes Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/1) <<< -size: 392 -location: clients/tests/test-client.py:997:test_004()/16 +size: 393 +location: clients/tests/test-client.py:1005:test_004()/16 cmd: $NMCLI con s lang: C returncode: 0 @@ -467,8 +467,8 @@ con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP vpn -- <<< -size: 402 -location: clients/tests/test-client.py:997:test_004()/17 +size: 403 +location: clients/tests/test-client.py:1005:test_004()/17 cmd: $NMCLI con s lang: pl_PL.UTF-8 returncode: 0 @@ -480,8 +480,8 @@ con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP vpn -- <<< -size: 241 -location: clients/tests/test-client.py:999:test_004()/18 +size: 242 +location: clients/tests/test-client.py:1007:test_004()/18 cmd: $NMCLI con up con-vpn-1 lang: C returncode: 0 @@ -491,7 +491,7 @@ Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkMa <<< size: 393 -location: clients/tests/test-client.py:1001:test_004()/19 +location: clients/tests/test-client.py:1009:test_004()/19 cmd: $NMCLI con s lang: C returncode: 0 @@ -504,7 +504,7 @@ con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- <<< size: 403 -location: clients/tests/test-client.py:1001:test_004()/20 +location: clients/tests/test-client.py:1009:test_004()/20 cmd: $NMCLI con s lang: pl_PL.UTF-8 returncode: 0 @@ -517,7 +517,7 @@ con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- <<< size: 4597 -location: clients/tests/test-client.py:1003:test_004()/21 +location: clients/tests/test-client.py:1011:test_004()/21 cmd: $NMCLI con s con-vpn-1 lang: C returncode: 0 @@ -619,7 +619,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4621 -location: clients/tests/test-client.py:1003:test_004()/22 +location: clients/tests/test-client.py:1011:test_004()/22 cmd: $NMCLI con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -721,7 +721,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4603 -location: clients/tests/test-client.py:1014:test_004()/23 +location: clients/tests/test-client.py:1022:test_004()/23 cmd: $NMCLI con s con-vpn-1 lang: C returncode: 0 @@ -823,7 +823,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4631 -location: clients/tests/test-client.py:1014:test_004()/24 +location: clients/tests/test-client.py:1022:test_004()/24 cmd: $NMCLI con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -925,7 +925,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4603 -location: clients/tests/test-client.py:1016:test_004()/25 +location: clients/tests/test-client.py:1024:test_004()/25 cmd: $NMCLI con s con-vpn-1 lang: C returncode: 0 @@ -1027,7 +1027,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4631 -location: clients/tests/test-client.py:1016:test_004()/26 +location: clients/tests/test-client.py:1024:test_004()/26 cmd: $NMCLI con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -1129,7 +1129,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 3522 -location: clients/tests/test-client.py:1019:test_004()/27 +location: clients/tests/test-client.py:1027:test_004()/27 cmd: $NMCLI -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -1211,7 +1211,7 @@ proxy.pac-script: -- <<< size: 3542 -location: clients/tests/test-client.py:1019:test_004()/28 +location: clients/tests/test-client.py:1027:test_004()/28 cmd: $NMCLI -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -1293,7 +1293,7 @@ proxy.pac-script: -- <<< size: 476 -location: clients/tests/test-client.py:1025:test_004()/29 +location: clients/tests/test-client.py:1033:test_004()/29 cmd: $NMCLI -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -1308,7 +1308,7 @@ vpn.timeout: 0 <<< size: 487 -location: clients/tests/test-client.py:1025:test_004()/30 +location: clients/tests/test-client.py:1033:test_004()/30 cmd: $NMCLI -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -1323,7 +1323,7 @@ vpn.timeout: 0 <<< size: 813 -location: clients/tests/test-client.py:1028:test_004()/31 +location: clients/tests/test-client.py:1036:test_004()/31 cmd: $NMCLI -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -1344,7 +1344,7 @@ GENERAL.MASTER-PATH: -- <<< size: 826 -location: clients/tests/test-client.py:1028:test_004()/32 +location: clients/tests/test-client.py:1036:test_004()/32 cmd: $NMCLI -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -1365,7 +1365,7 @@ GENERAL.MASTER-PATH: -- <<< size: 383 -location: clients/tests/test-client.py:1031:test_004()/33 +location: clients/tests/test-client.py:1039:test_004()/33 cmd: $NMCLI dev s lang: C returncode: 0 @@ -1380,7 +1380,7 @@ wlan0 wifi unavailable con-vpn-1 <<< size: 398 -location: clients/tests/test-client.py:1031:test_004()/34 +location: clients/tests/test-client.py:1039:test_004()/34 cmd: $NMCLI dev s lang: pl_PL.UTF-8 returncode: 0 @@ -1395,7 +1395,7 @@ wlan0 wifi niedostępne con-vpn-1 <<< size: 1194 -location: clients/tests/test-client.py:1034:test_004()/35 +location: clients/tests/test-client.py:1042:test_004()/35 cmd: $NMCLI -f all dev status lang: C returncode: 0 @@ -1410,7 +1410,7 @@ wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 con-vp <<< size: 1209 -location: clients/tests/test-client.py:1034:test_004()/36 +location: clients/tests/test-client.py:1042:test_004()/36 cmd: $NMCLI -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -1425,7 +1425,7 @@ wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 con-v <<< size: 8047 -location: clients/tests/test-client.py:1037:test_004()/37 +location: clients/tests/test-client.py:1045:test_004()/37 cmd: $NMCLI dev show lang: C returncode: 0 @@ -1571,7 +1571,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 8078 -location: clients/tests/test-client.py:1037:test_004()/38 +location: clients/tests/test-client.py:1045:test_004()/38 cmd: $NMCLI dev show lang: pl_PL.UTF-8 returncode: 0 @@ -1717,7 +1717,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 20150 -location: clients/tests/test-client.py:1040:test_004()/39 +location: clients/tests/test-client.py:1048:test_004()/39 cmd: $NMCLI -f all dev show lang: C returncode: 0 @@ -2096,7 +2096,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 20290 -location: clients/tests/test-client.py:1040:test_004()/40 +location: clients/tests/test-client.py:1048:test_004()/40 cmd: $NMCLI -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -2475,7 +2475,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1498 -location: clients/tests/test-client.py:1043:test_004()/41 +location: clients/tests/test-client.py:1051:test_004()/41 cmd: $NMCLI dev show wlan0 lang: C returncode: 0 @@ -2508,7 +2508,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1509 -location: clients/tests/test-client.py:1043:test_004()/42 +location: clients/tests/test-client.py:1051:test_004()/42 cmd: $NMCLI dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -2541,7 +2541,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4753 -location: clients/tests/test-client.py:1046:test_004()/43 +location: clients/tests/test-client.py:1054:test_004()/43 cmd: $NMCLI -f all dev show wlan0 lang: C returncode: 0 @@ -2639,7 +2639,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4806 -location: clients/tests/test-client.py:1046:test_004()/44 +location: clients/tests/test-client.py:1054:test_004()/44 cmd: $NMCLI -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -2737,7 +2737,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1856 -location: clients/tests/test-client.py:1049:test_004()/45 +location: clients/tests/test-client.py:1057:test_004()/45 cmd: $NMCLI -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -2780,7 +2780,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1878 -location: clients/tests/test-client.py:1049:test_004()/46 +location: clients/tests/test-client.py:1057:test_004()/46 cmd: $NMCLI -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -2823,7 +2823,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1856 -location: clients/tests/test-client.py:1052:test_004()/47 +location: clients/tests/test-client.py:1060:test_004()/47 cmd: $NMCLI -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -2866,7 +2866,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1878 -location: clients/tests/test-client.py:1052:test_004()/48 +location: clients/tests/test-client.py:1060:test_004()/48 cmd: $NMCLI -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -2909,7 +2909,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 514 -location: clients/tests/test-client.py:1055:test_004()/49 +location: clients/tests/test-client.py:1063:test_004()/49 cmd: $NMCLI -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -2924,7 +2924,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 524 -location: clients/tests/test-client.py:1055:test_004()/50 +location: clients/tests/test-client.py:1063:test_004()/50 cmd: $NMCLI -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -2939,7 +2939,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 1984 -location: clients/tests/test-client.py:1058:test_004()/51 +location: clients/tests/test-client.py:1066:test_004()/51 cmd: $NMCLI -f ALL device wifi list lang: C returncode: 0 @@ -2957,7 +2957,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 2052 -location: clients/tests/test-client.py:1058:test_004()/52 +location: clients/tests/test-client.py:1066:test_004()/52 cmd: $NMCLI -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -2975,7 +2975,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 618 -location: clients/tests/test-client.py:1060:test_004()/53 +location: clients/tests/test-client.py:1068:test_004()/53 cmd: $NMCLI -f COMMON device wifi list lang: C returncode: 0 @@ -2993,7 +2993,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 678 -location: clients/tests/test-client.py:1060:test_004()/54 +location: clients/tests/test-client.py:1068:test_004()/54 cmd: $NMCLI -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -3011,7 +3011,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 2097 -location: clients/tests/test-client.py:1063:test_004()/55 +location: clients/tests/test-client.py:1071:test_004()/55 cmd: $NMCLI -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -3029,7 +3029,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 2165 -location: clients/tests/test-client.py:1063:test_004()/56 +location: clients/tests/test-client.py:1071:test_004()/56 cmd: $NMCLI -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -3047,7 +3047,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 735 -location: clients/tests/test-client.py:1065:test_004()/57 +location: clients/tests/test-client.py:1073:test_004()/57 cmd: $NMCLI -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -3058,7 +3058,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 763 -location: clients/tests/test-client.py:1065:test_004()/58 +location: clients/tests/test-client.py:1073:test_004()/58 cmd: $NMCLI -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -3069,7 +3069,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 308 -location: clients/tests/test-client.py:1067:test_004()/59 +location: clients/tests/test-client.py:1075:test_004()/59 cmd: $NMCLI -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -3080,7 +3080,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 334 -location: clients/tests/test-client.py:1067:test_004()/60 +location: clients/tests/test-client.py:1075:test_004()/60 cmd: $NMCLI -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -3091,7 +3091,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 848 -location: clients/tests/test-client.py:1070:test_004()/61 +location: clients/tests/test-client.py:1078:test_004()/61 cmd: $NMCLI -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -3102,7 +3102,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 876 -location: clients/tests/test-client.py:1070:test_004()/62 +location: clients/tests/test-client.py:1078:test_004()/62 cmd: $NMCLI -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -3113,7 +3113,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 4756 -location: clients/tests/test-client.py:1072:test_004()/63 +location: clients/tests/test-client.py:1080:test_004()/63 cmd: $NMCLI -f ALL device show wlan0 lang: C returncode: 0 @@ -3211,7 +3211,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4809 -location: clients/tests/test-client.py:1072:test_004()/64 +location: clients/tests/test-client.py:1080:test_004()/64 cmd: $NMCLI -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -3309,7 +3309,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1511 -location: clients/tests/test-client.py:1074:test_004()/65 +location: clients/tests/test-client.py:1082:test_004()/65 cmd: $NMCLI -f COMMON device show wlan0 lang: C returncode: 0 @@ -3342,7 +3342,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1522 -location: clients/tests/test-client.py:1074:test_004()/66 +location: clients/tests/test-client.py:1082:test_004()/66 cmd: $NMCLI -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -3375,7 +3375,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4894 -location: clients/tests/test-client.py:1076:test_004()/67 +location: clients/tests/test-client.py:1084:test_004()/67 cmd: $NMCLI -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -3473,7 +3473,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4947 -location: clients/tests/test-client.py:1076:test_004()/68 +location: clients/tests/test-client.py:1084:test_004()/68 cmd: $NMCLI -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -3571,7 +3571,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4615 -location: clients/tests/test-client.py:1014:test_004()/69 +location: clients/tests/test-client.py:1022:test_004()/69 cmd: $NMCLI --color yes con s con-vpn-1 lang: C returncode: 0 @@ -3673,7 +3673,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4643 -location: clients/tests/test-client.py:1014:test_004()/70 +location: clients/tests/test-client.py:1022:test_004()/70 cmd: $NMCLI --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -3775,7 +3775,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4615 -location: clients/tests/test-client.py:1016:test_004()/71 +location: clients/tests/test-client.py:1024:test_004()/71 cmd: $NMCLI --color yes con s con-vpn-1 lang: C returncode: 0 @@ -3877,7 +3877,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4643 -location: clients/tests/test-client.py:1016:test_004()/72 +location: clients/tests/test-client.py:1024:test_004()/72 cmd: $NMCLI --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -3979,7 +3979,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 3534 -location: clients/tests/test-client.py:1019:test_004()/73 +location: clients/tests/test-client.py:1027:test_004()/73 cmd: $NMCLI --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -4061,7 +4061,7 @@ proxy.pac-script: -- <<< size: 3554 -location: clients/tests/test-client.py:1019:test_004()/74 +location: clients/tests/test-client.py:1027:test_004()/74 cmd: $NMCLI --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -4143,7 +4143,7 @@ proxy.pac-script: -- <<< size: 488 -location: clients/tests/test-client.py:1025:test_004()/75 +location: clients/tests/test-client.py:1033:test_004()/75 cmd: $NMCLI --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -4158,7 +4158,7 @@ vpn.timeout: 0 <<< size: 499 -location: clients/tests/test-client.py:1025:test_004()/76 +location: clients/tests/test-client.py:1033:test_004()/76 cmd: $NMCLI --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -4173,7 +4173,7 @@ vpn.timeout: 0 <<< size: 825 -location: clients/tests/test-client.py:1028:test_004()/77 +location: clients/tests/test-client.py:1036:test_004()/77 cmd: $NMCLI --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -4194,7 +4194,7 @@ GENERAL.MASTER-PATH: -- <<< size: 838 -location: clients/tests/test-client.py:1028:test_004()/78 +location: clients/tests/test-client.py:1036:test_004()/78 cmd: $NMCLI --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -4215,7 +4215,7 @@ GENERAL.MASTER-PATH: -- <<< size: 555 -location: clients/tests/test-client.py:1031:test_004()/79 +location: clients/tests/test-client.py:1039:test_004()/79 cmd: $NMCLI --color yes dev s lang: C returncode: 0 @@ -4230,7 +4230,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 570 -location: clients/tests/test-client.py:1031:test_004()/80 +location: clients/tests/test-client.py:1039:test_004()/80 cmd: $NMCLI --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -4245,7 +4245,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 1486 -location: clients/tests/test-client.py:1034:test_004()/81 +location: clients/tests/test-client.py:1042:test_004()/81 cmd: $NMCLI --color yes -f all dev status lang: C returncode: 0 @@ -4260,7 +4260,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 1501 -location: clients/tests/test-client.py:1034:test_004()/82 +location: clients/tests/test-client.py:1042:test_004()/82 cmd: $NMCLI --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -4275,7 +4275,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 8059 -location: clients/tests/test-client.py:1037:test_004()/83 +location: clients/tests/test-client.py:1045:test_004()/83 cmd: $NMCLI --color yes dev show lang: C returncode: 0 @@ -4421,7 +4421,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 8090 -location: clients/tests/test-client.py:1037:test_004()/84 +location: clients/tests/test-client.py:1045:test_004()/84 cmd: $NMCLI --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -4567,7 +4567,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 20450 -location: clients/tests/test-client.py:1040:test_004()/85 +location: clients/tests/test-client.py:1048:test_004()/85 cmd: $NMCLI --color yes -f all dev show lang: C returncode: 0 @@ -4946,7 +4946,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 20590 -location: clients/tests/test-client.py:1040:test_004()/86 +location: clients/tests/test-client.py:1048:test_004()/86 cmd: $NMCLI --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -5325,7 +5325,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1510 -location: clients/tests/test-client.py:1043:test_004()/87 +location: clients/tests/test-client.py:1051:test_004()/87 cmd: $NMCLI --color yes dev show wlan0 lang: C returncode: 0 @@ -5358,7 +5358,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1521 -location: clients/tests/test-client.py:1043:test_004()/88 +location: clients/tests/test-client.py:1051:test_004()/88 cmd: $NMCLI --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -5391,7 +5391,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4981 -location: clients/tests/test-client.py:1046:test_004()/89 +location: clients/tests/test-client.py:1054:test_004()/89 cmd: $NMCLI --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -5489,7 +5489,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5034 -location: clients/tests/test-client.py:1046:test_004()/90 +location: clients/tests/test-client.py:1054:test_004()/90 cmd: $NMCLI --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -5587,7 +5587,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1868 -location: clients/tests/test-client.py:1049:test_004()/91 +location: clients/tests/test-client.py:1057:test_004()/91 cmd: $NMCLI --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -5630,7 +5630,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1890 -location: clients/tests/test-client.py:1049:test_004()/92 +location: clients/tests/test-client.py:1057:test_004()/92 cmd: $NMCLI --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -5673,7 +5673,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1868 -location: clients/tests/test-client.py:1052:test_004()/93 +location: clients/tests/test-client.py:1060:test_004()/93 cmd: $NMCLI --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -5716,7 +5716,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1890 -location: clients/tests/test-client.py:1052:test_004()/94 +location: clients/tests/test-client.py:1060:test_004()/94 cmd: $NMCLI --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -5759,7 +5759,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 646 -location: clients/tests/test-client.py:1055:test_004()/95 +location: clients/tests/test-client.py:1063:test_004()/95 cmd: $NMCLI --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -5774,7 +5774,7 @@ DEVICE TYPE DBUS-PATH <<< size: 656 -location: clients/tests/test-client.py:1055:test_004()/96 +location: clients/tests/test-client.py:1063:test_004()/96 cmd: $NMCLI --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -5789,7 +5789,7 @@ DEVICE TYPE DBUS-PATH <<< size: 2608 -location: clients/tests/test-client.py:1058:test_004()/97 +location: clients/tests/test-client.py:1066:test_004()/97 cmd: $NMCLI --color yes -f ALL device wifi list lang: C returncode: 0 @@ -5807,7 +5807,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 2676 -location: clients/tests/test-client.py:1058:test_004()/98 +location: clients/tests/test-client.py:1066:test_004()/98 cmd: $NMCLI --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -5825,7 +5825,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 918 -location: clients/tests/test-client.py:1060:test_004()/99 +location: clients/tests/test-client.py:1068:test_004()/99 cmd: $NMCLI --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -5843,7 +5843,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 979 -location: clients/tests/test-client.py:1060:test_004()/100 +location: clients/tests/test-client.py:1068:test_004()/100 cmd: $NMCLI --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -5861,7 +5861,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 2722 -location: clients/tests/test-client.py:1063:test_004()/101 +location: clients/tests/test-client.py:1071:test_004()/101 cmd: $NMCLI --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -5879,7 +5879,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 2790 -location: clients/tests/test-client.py:1063:test_004()/102 +location: clients/tests/test-client.py:1071:test_004()/102 cmd: $NMCLI --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -5897,7 +5897,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 901 -location: clients/tests/test-client.py:1065:test_004()/103 +location: clients/tests/test-client.py:1073:test_004()/103 cmd: $NMCLI --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -5908,7 +5908,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 929 -location: clients/tests/test-client.py:1065:test_004()/104 +location: clients/tests/test-client.py:1073:test_004()/104 cmd: $NMCLI --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -5919,7 +5919,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 393 -location: clients/tests/test-client.py:1067:test_004()/105 +location: clients/tests/test-client.py:1075:test_004()/105 cmd: $NMCLI --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -5930,7 +5930,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 419 -location: clients/tests/test-client.py:1067:test_004()/106 +location: clients/tests/test-client.py:1075:test_004()/106 cmd: $NMCLI --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -5941,7 +5941,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1014 -location: clients/tests/test-client.py:1070:test_004()/107 +location: clients/tests/test-client.py:1078:test_004()/107 cmd: $NMCLI --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -5952,7 +5952,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1042 -location: clients/tests/test-client.py:1070:test_004()/108 +location: clients/tests/test-client.py:1078:test_004()/108 cmd: $NMCLI --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -5963,7 +5963,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 4985 -location: clients/tests/test-client.py:1072:test_004()/109 +location: clients/tests/test-client.py:1080:test_004()/109 cmd: $NMCLI --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -6061,7 +6061,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5038 -location: clients/tests/test-client.py:1072:test_004()/110 +location: clients/tests/test-client.py:1080:test_004()/110 cmd: $NMCLI --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -6159,7 +6159,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1524 -location: clients/tests/test-client.py:1074:test_004()/111 +location: clients/tests/test-client.py:1082:test_004()/111 cmd: $NMCLI --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -6192,7 +6192,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1535 -location: clients/tests/test-client.py:1074:test_004()/112 +location: clients/tests/test-client.py:1082:test_004()/112 cmd: $NMCLI --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -6225,7 +6225,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 5123 -location: clients/tests/test-client.py:1076:test_004()/113 +location: clients/tests/test-client.py:1084:test_004()/113 cmd: $NMCLI --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -6323,7 +6323,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5176 -location: clients/tests/test-client.py:1076:test_004()/114 +location: clients/tests/test-client.py:1084:test_004()/114 cmd: $NMCLI --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -6421,7 +6421,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5625 -location: clients/tests/test-client.py:1014:test_004()/115 +location: clients/tests/test-client.py:1022:test_004()/115 cmd: $NMCLI --pretty con s con-vpn-1 lang: C returncode: 0 @@ -6536,7 +6536,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5665 -location: clients/tests/test-client.py:1014:test_004()/116 +location: clients/tests/test-client.py:1022:test_004()/116 cmd: $NMCLI --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -6651,7 +6651,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5625 -location: clients/tests/test-client.py:1016:test_004()/117 +location: clients/tests/test-client.py:1024:test_004()/117 cmd: $NMCLI --pretty con s con-vpn-1 lang: C returncode: 0 @@ -6766,7 +6766,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5665 -location: clients/tests/test-client.py:1016:test_004()/118 +location: clients/tests/test-client.py:1024:test_004()/118 cmd: $NMCLI --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -6881,7 +6881,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4151 -location: clients/tests/test-client.py:1019:test_004()/119 +location: clients/tests/test-client.py:1027:test_004()/119 cmd: $NMCLI --pretty -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -6971,7 +6971,7 @@ proxy.pac-script: -- <<< size: 4176 -location: clients/tests/test-client.py:1019:test_004()/120 +location: clients/tests/test-client.py:1027:test_004()/120 cmd: $NMCLI --pretty -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -7061,7 +7061,7 @@ proxy.pac-script: -- <<< size: 785 -location: clients/tests/test-client.py:1025:test_004()/121 +location: clients/tests/test-client.py:1033:test_004()/121 cmd: $NMCLI --pretty -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -7080,7 +7080,7 @@ vpn.timeout: 0 <<< size: 801 -location: clients/tests/test-client.py:1025:test_004()/122 +location: clients/tests/test-client.py:1033:test_004()/122 cmd: $NMCLI --pretty -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -7099,7 +7099,7 @@ vpn.timeout: 0 <<< size: 1136 -location: clients/tests/test-client.py:1028:test_004()/123 +location: clients/tests/test-client.py:1036:test_004()/123 cmd: $NMCLI --pretty -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -7124,7 +7124,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1156 -location: clients/tests/test-client.py:1028:test_004()/124 +location: clients/tests/test-client.py:1036:test_004()/124 cmd: $NMCLI --pretty -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -7149,7 +7149,7 @@ GENERAL.MASTER-PATH: -- <<< size: 522 -location: clients/tests/test-client.py:1031:test_004()/125 +location: clients/tests/test-client.py:1039:test_004()/125 cmd: $NMCLI --pretty dev s lang: C returncode: 0 @@ -7168,7 +7168,7 @@ wlan0 wifi unavailable con-vpn-1 <<< size: 530 -location: clients/tests/test-client.py:1031:test_004()/126 +location: clients/tests/test-client.py:1039:test_004()/126 cmd: $NMCLI --pretty dev s lang: pl_PL.UTF-8 returncode: 0 @@ -7187,7 +7187,7 @@ wlan0 wifi niedostępne con-vpn-1 <<< size: 1466 -location: clients/tests/test-client.py:1034:test_004()/127 +location: clients/tests/test-client.py:1042:test_004()/127 cmd: $NMCLI --pretty -f all dev status lang: C returncode: 0 @@ -7206,7 +7206,7 @@ wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 con-vp <<< size: 1474 -location: clients/tests/test-client.py:1034:test_004()/128 +location: clients/tests/test-client.py:1042:test_004()/128 cmd: $NMCLI --pretty -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -7225,7 +7225,7 @@ wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 con-v <<< size: 12873 -location: clients/tests/test-client.py:1037:test_004()/129 +location: clients/tests/test-client.py:1045:test_004()/129 cmd: $NMCLI --pretty dev show lang: C returncode: 0 @@ -7433,7 +7433,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 12937 -location: clients/tests/test-client.py:1037:test_004()/130 +location: clients/tests/test-client.py:1045:test_004()/130 cmd: $NMCLI --pretty dev show lang: pl_PL.UTF-8 returncode: 0 @@ -7641,7 +7641,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 24735 -location: clients/tests/test-client.py:1040:test_004()/131 +location: clients/tests/test-client.py:1048:test_004()/131 cmd: $NMCLI --pretty -f all dev show lang: C returncode: 0 @@ -8079,7 +8079,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 24908 -location: clients/tests/test-client.py:1040:test_004()/132 +location: clients/tests/test-client.py:1048:test_004()/132 cmd: $NMCLI --pretty -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -8517,7 +8517,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2439 -location: clients/tests/test-client.py:1043:test_004()/133 +location: clients/tests/test-client.py:1051:test_004()/133 cmd: $NMCLI --pretty dev show wlan0 lang: C returncode: 0 @@ -8562,7 +8562,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2457 -location: clients/tests/test-client.py:1043:test_004()/134 +location: clients/tests/test-client.py:1051:test_004()/134 cmd: $NMCLI --pretty dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -8607,7 +8607,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 5854 -location: clients/tests/test-client.py:1046:test_004()/135 +location: clients/tests/test-client.py:1054:test_004()/135 cmd: $NMCLI --pretty -f all dev show wlan0 lang: C returncode: 0 @@ -8719,7 +8719,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5914 -location: clients/tests/test-client.py:1046:test_004()/136 +location: clients/tests/test-client.py:1054:test_004()/136 cmd: $NMCLI --pretty -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -8831,7 +8831,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2317 -location: clients/tests/test-client.py:1049:test_004()/137 +location: clients/tests/test-client.py:1057:test_004()/137 cmd: $NMCLI --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -8880,7 +8880,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2346 -location: clients/tests/test-client.py:1049:test_004()/138 +location: clients/tests/test-client.py:1057:test_004()/138 cmd: $NMCLI --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -8929,7 +8929,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 2317 -location: clients/tests/test-client.py:1052:test_004()/139 +location: clients/tests/test-client.py:1060:test_004()/139 cmd: $NMCLI --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -8978,7 +8978,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2346 -location: clients/tests/test-client.py:1052:test_004()/140 +location: clients/tests/test-client.py:1060:test_004()/140 cmd: $NMCLI --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -9027,7 +9027,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 671 -location: clients/tests/test-client.py:1055:test_004()/141 +location: clients/tests/test-client.py:1063:test_004()/141 cmd: $NMCLI --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -9046,7 +9046,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 674 -location: clients/tests/test-client.py:1055:test_004()/142 +location: clients/tests/test-client.py:1063:test_004()/142 cmd: $NMCLI --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -9065,7 +9065,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 3026 -location: clients/tests/test-client.py:1058:test_004()/143 +location: clients/tests/test-client.py:1066:test_004()/143 cmd: $NMCLI --pretty -f ALL device wifi list lang: C returncode: 0 @@ -9095,7 +9095,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 3264 -location: clients/tests/test-client.py:1058:test_004()/144 +location: clients/tests/test-client.py:1066:test_004()/144 cmd: $NMCLI --pretty -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -9125,7 +9125,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 1152 -location: clients/tests/test-client.py:1060:test_004()/145 +location: clients/tests/test-client.py:1068:test_004()/145 cmd: $NMCLI --pretty -f COMMON device wifi list lang: C returncode: 0 @@ -9155,7 +9155,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1383 -location: clients/tests/test-client.py:1060:test_004()/146 +location: clients/tests/test-client.py:1068:test_004()/146 cmd: $NMCLI --pretty -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -9185,7 +9185,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 3139 -location: clients/tests/test-client.py:1063:test_004()/147 +location: clients/tests/test-client.py:1071:test_004()/147 cmd: $NMCLI --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -9215,7 +9215,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 3377 -location: clients/tests/test-client.py:1063:test_004()/148 +location: clients/tests/test-client.py:1071:test_004()/148 cmd: $NMCLI --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -9245,7 +9245,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 1139 -location: clients/tests/test-client.py:1065:test_004()/149 +location: clients/tests/test-client.py:1073:test_004()/149 cmd: $NMCLI --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -9260,7 +9260,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 1227 -location: clients/tests/test-client.py:1065:test_004()/150 +location: clients/tests/test-client.py:1073:test_004()/150 cmd: $NMCLI --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -9275,7 +9275,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 497 -location: clients/tests/test-client.py:1067:test_004()/151 +location: clients/tests/test-client.py:1075:test_004()/151 cmd: $NMCLI --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -9290,7 +9290,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 582 -location: clients/tests/test-client.py:1067:test_004()/152 +location: clients/tests/test-client.py:1075:test_004()/152 cmd: $NMCLI --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -9305,7 +9305,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1252 -location: clients/tests/test-client.py:1070:test_004()/153 +location: clients/tests/test-client.py:1078:test_004()/153 cmd: $NMCLI --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -9320,7 +9320,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 1340 -location: clients/tests/test-client.py:1070:test_004()/154 +location: clients/tests/test-client.py:1078:test_004()/154 cmd: $NMCLI --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -9335,7 +9335,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 5857 -location: clients/tests/test-client.py:1072:test_004()/155 +location: clients/tests/test-client.py:1080:test_004()/155 cmd: $NMCLI --pretty -f ALL device show wlan0 lang: C returncode: 0 @@ -9447,7 +9447,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5917 -location: clients/tests/test-client.py:1072:test_004()/156 +location: clients/tests/test-client.py:1080:test_004()/156 cmd: $NMCLI --pretty -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -9559,7 +9559,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2452 -location: clients/tests/test-client.py:1074:test_004()/157 +location: clients/tests/test-client.py:1082:test_004()/157 cmd: $NMCLI --pretty -f COMMON device show wlan0 lang: C returncode: 0 @@ -9604,7 +9604,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2470 -location: clients/tests/test-client.py:1074:test_004()/158 +location: clients/tests/test-client.py:1082:test_004()/158 cmd: $NMCLI --pretty -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -9649,7 +9649,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 5995 -location: clients/tests/test-client.py:1076:test_004()/159 +location: clients/tests/test-client.py:1084:test_004()/159 cmd: $NMCLI --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -9761,7 +9761,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6055 -location: clients/tests/test-client.py:1076:test_004()/160 +location: clients/tests/test-client.py:1084:test_004()/160 cmd: $NMCLI --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -9873,7 +9873,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5637 -location: clients/tests/test-client.py:1014:test_004()/161 +location: clients/tests/test-client.py:1022:test_004()/161 cmd: $NMCLI --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -9988,7 +9988,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5677 -location: clients/tests/test-client.py:1014:test_004()/162 +location: clients/tests/test-client.py:1022:test_004()/162 cmd: $NMCLI --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -10103,7 +10103,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5637 -location: clients/tests/test-client.py:1016:test_004()/163 +location: clients/tests/test-client.py:1024:test_004()/163 cmd: $NMCLI --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -10218,7 +10218,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5677 -location: clients/tests/test-client.py:1016:test_004()/164 +location: clients/tests/test-client.py:1024:test_004()/164 cmd: $NMCLI --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -10333,7 +10333,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4163 -location: clients/tests/test-client.py:1019:test_004()/165 +location: clients/tests/test-client.py:1027:test_004()/165 cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -10423,7 +10423,7 @@ proxy.pac-script: -- <<< size: 4188 -location: clients/tests/test-client.py:1019:test_004()/166 +location: clients/tests/test-client.py:1027:test_004()/166 cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -10513,7 +10513,7 @@ proxy.pac-script: -- <<< size: 797 -location: clients/tests/test-client.py:1025:test_004()/167 +location: clients/tests/test-client.py:1033:test_004()/167 cmd: $NMCLI --pretty --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -10532,7 +10532,7 @@ vpn.timeout: 0 <<< size: 813 -location: clients/tests/test-client.py:1025:test_004()/168 +location: clients/tests/test-client.py:1033:test_004()/168 cmd: $NMCLI --pretty --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -10551,7 +10551,7 @@ vpn.timeout: 0 <<< size: 1148 -location: clients/tests/test-client.py:1028:test_004()/169 +location: clients/tests/test-client.py:1036:test_004()/169 cmd: $NMCLI --pretty --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -10576,7 +10576,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1168 -location: clients/tests/test-client.py:1028:test_004()/170 +location: clients/tests/test-client.py:1036:test_004()/170 cmd: $NMCLI --pretty --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -10601,7 +10601,7 @@ GENERAL.MASTER-PATH: -- <<< size: 694 -location: clients/tests/test-client.py:1031:test_004()/171 +location: clients/tests/test-client.py:1039:test_004()/171 cmd: $NMCLI --pretty --color yes dev s lang: C returncode: 0 @@ -10620,7 +10620,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 702 -location: clients/tests/test-client.py:1031:test_004()/172 +location: clients/tests/test-client.py:1039:test_004()/172 cmd: $NMCLI --pretty --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -10639,7 +10639,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 1758 -location: clients/tests/test-client.py:1034:test_004()/173 +location: clients/tests/test-client.py:1042:test_004()/173 cmd: $NMCLI --pretty --color yes -f all dev status lang: C returncode: 0 @@ -10658,7 +10658,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 1766 -location: clients/tests/test-client.py:1034:test_004()/174 +location: clients/tests/test-client.py:1042:test_004()/174 cmd: $NMCLI --pretty --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -10677,7 +10677,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 12885 -location: clients/tests/test-client.py:1037:test_004()/175 +location: clients/tests/test-client.py:1045:test_004()/175 cmd: $NMCLI --pretty --color yes dev show lang: C returncode: 0 @@ -10885,7 +10885,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 12949 -location: clients/tests/test-client.py:1037:test_004()/176 +location: clients/tests/test-client.py:1045:test_004()/176 cmd: $NMCLI --pretty --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -11093,7 +11093,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 25035 -location: clients/tests/test-client.py:1040:test_004()/177 +location: clients/tests/test-client.py:1048:test_004()/177 cmd: $NMCLI --pretty --color yes -f all dev show lang: C returncode: 0 @@ -11531,7 +11531,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 25208 -location: clients/tests/test-client.py:1040:test_004()/178 +location: clients/tests/test-client.py:1048:test_004()/178 cmd: $NMCLI --pretty --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -11969,7 +11969,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2451 -location: clients/tests/test-client.py:1043:test_004()/179 +location: clients/tests/test-client.py:1051:test_004()/179 cmd: $NMCLI --pretty --color yes dev show wlan0 lang: C returncode: 0 @@ -12014,7 +12014,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2469 -location: clients/tests/test-client.py:1043:test_004()/180 +location: clients/tests/test-client.py:1051:test_004()/180 cmd: $NMCLI --pretty --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -12059,7 +12059,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 6082 -location: clients/tests/test-client.py:1046:test_004()/181 +location: clients/tests/test-client.py:1054:test_004()/181 cmd: $NMCLI --pretty --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -12171,7 +12171,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6142 -location: clients/tests/test-client.py:1046:test_004()/182 +location: clients/tests/test-client.py:1054:test_004()/182 cmd: $NMCLI --pretty --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -12283,7 +12283,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2329 -location: clients/tests/test-client.py:1049:test_004()/183 +location: clients/tests/test-client.py:1057:test_004()/183 cmd: $NMCLI --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -12332,7 +12332,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2358 -location: clients/tests/test-client.py:1049:test_004()/184 +location: clients/tests/test-client.py:1057:test_004()/184 cmd: $NMCLI --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -12381,7 +12381,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 2329 -location: clients/tests/test-client.py:1052:test_004()/185 +location: clients/tests/test-client.py:1060:test_004()/185 cmd: $NMCLI --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -12430,7 +12430,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2358 -location: clients/tests/test-client.py:1052:test_004()/186 +location: clients/tests/test-client.py:1060:test_004()/186 cmd: $NMCLI --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -12479,7 +12479,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 803 -location: clients/tests/test-client.py:1055:test_004()/187 +location: clients/tests/test-client.py:1063:test_004()/187 cmd: $NMCLI --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -12498,7 +12498,7 @@ DEVICE TYPE DBUS-PATH <<< size: 806 -location: clients/tests/test-client.py:1055:test_004()/188 +location: clients/tests/test-client.py:1063:test_004()/188 cmd: $NMCLI --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -12517,7 +12517,7 @@ DEVICE TYPE DBUS-PATH <<< size: 3650 -location: clients/tests/test-client.py:1058:test_004()/189 +location: clients/tests/test-client.py:1066:test_004()/189 cmd: $NMCLI --pretty --color yes -f ALL device wifi list lang: C returncode: 0 @@ -12547,7 +12547,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 3888 -location: clients/tests/test-client.py:1058:test_004()/190 +location: clients/tests/test-client.py:1066:test_004()/190 cmd: $NMCLI --pretty --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -12577,7 +12577,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 1453 -location: clients/tests/test-client.py:1060:test_004()/191 +location: clients/tests/test-client.py:1068:test_004()/191 cmd: $NMCLI --pretty --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -12607,7 +12607,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1683 -location: clients/tests/test-client.py:1060:test_004()/192 +location: clients/tests/test-client.py:1068:test_004()/192 cmd: $NMCLI --pretty --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -12637,7 +12637,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 3763 -location: clients/tests/test-client.py:1063:test_004()/193 +location: clients/tests/test-client.py:1071:test_004()/193 cmd: $NMCLI --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -12667,7 +12667,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 4001 -location: clients/tests/test-client.py:1063:test_004()/194 +location: clients/tests/test-client.py:1071:test_004()/194 cmd: $NMCLI --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -12697,7 +12697,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 1305 -location: clients/tests/test-client.py:1065:test_004()/195 +location: clients/tests/test-client.py:1073:test_004()/195 cmd: $NMCLI --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -12712,7 +12712,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1392 -location: clients/tests/test-client.py:1065:test_004()/196 +location: clients/tests/test-client.py:1073:test_004()/196 cmd: $NMCLI --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -12727,7 +12727,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 581 -location: clients/tests/test-client.py:1067:test_004()/197 +location: clients/tests/test-client.py:1075:test_004()/197 cmd: $NMCLI --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -12742,7 +12742,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 666 -location: clients/tests/test-client.py:1067:test_004()/198 +location: clients/tests/test-client.py:1075:test_004()/198 cmd: $NMCLI --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -12757,7 +12757,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1418 -location: clients/tests/test-client.py:1070:test_004()/199 +location: clients/tests/test-client.py:1078:test_004()/199 cmd: $NMCLI --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -12772,7 +12772,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1505 -location: clients/tests/test-client.py:1070:test_004()/200 +location: clients/tests/test-client.py:1078:test_004()/200 cmd: $NMCLI --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -12787,7 +12787,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 6085 -location: clients/tests/test-client.py:1072:test_004()/201 +location: clients/tests/test-client.py:1080:test_004()/201 cmd: $NMCLI --pretty --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -12899,7 +12899,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6145 -location: clients/tests/test-client.py:1072:test_004()/202 +location: clients/tests/test-client.py:1080:test_004()/202 cmd: $NMCLI --pretty --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -13011,7 +13011,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2464 -location: clients/tests/test-client.py:1074:test_004()/203 +location: clients/tests/test-client.py:1082:test_004()/203 cmd: $NMCLI --pretty --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -13056,7 +13056,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2482 -location: clients/tests/test-client.py:1074:test_004()/204 +location: clients/tests/test-client.py:1082:test_004()/204 cmd: $NMCLI --pretty --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -13101,7 +13101,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 6223 -location: clients/tests/test-client.py:1076:test_004()/205 +location: clients/tests/test-client.py:1084:test_004()/205 cmd: $NMCLI --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -13213,7 +13213,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6283 -location: clients/tests/test-client.py:1076:test_004()/206 +location: clients/tests/test-client.py:1084:test_004()/206 cmd: $NMCLI --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -13325,7 +13325,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2323 -location: clients/tests/test-client.py:1014:test_004()/207 +location: clients/tests/test-client.py:1022:test_004()/207 cmd: $NMCLI --terse con s con-vpn-1 lang: C returncode: 0 @@ -13427,7 +13427,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2333 -location: clients/tests/test-client.py:1014:test_004()/208 +location: clients/tests/test-client.py:1022:test_004()/208 cmd: $NMCLI --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -13529,7 +13529,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2323 -location: clients/tests/test-client.py:1016:test_004()/209 +location: clients/tests/test-client.py:1024:test_004()/209 cmd: $NMCLI --terse con s con-vpn-1 lang: C returncode: 0 @@ -13631,7 +13631,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2333 -location: clients/tests/test-client.py:1016:test_004()/210 +location: clients/tests/test-client.py:1024:test_004()/210 cmd: $NMCLI --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -13733,7 +13733,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 1771 -location: clients/tests/test-client.py:1019:test_004()/211 +location: clients/tests/test-client.py:1027:test_004()/211 cmd: $NMCLI --terse -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -13815,7 +13815,7 @@ proxy.pac-script: <<< size: 1781 -location: clients/tests/test-client.py:1019:test_004()/212 +location: clients/tests/test-client.py:1027:test_004()/212 cmd: $NMCLI --terse -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -13897,7 +13897,7 @@ proxy.pac-script: <<< size: 322 -location: clients/tests/test-client.py:1025:test_004()/213 +location: clients/tests/test-client.py:1033:test_004()/213 cmd: $NMCLI --terse -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -13912,7 +13912,7 @@ vpn.timeout:0 <<< size: 332 -location: clients/tests/test-client.py:1025:test_004()/214 +location: clients/tests/test-client.py:1033:test_004()/214 cmd: $NMCLI --terse -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -13927,7 +13927,7 @@ vpn.timeout:0 <<< size: 525 -location: clients/tests/test-client.py:1028:test_004()/215 +location: clients/tests/test-client.py:1036:test_004()/215 cmd: $NMCLI --terse -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -13948,7 +13948,7 @@ GENERAL.MASTER-PATH: <<< size: 535 -location: clients/tests/test-client.py:1028:test_004()/216 +location: clients/tests/test-client.py:1036:test_004()/216 cmd: $NMCLI --terse -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -13969,7 +13969,7 @@ GENERAL.MASTER-PATH: <<< size: 269 -location: clients/tests/test-client.py:1031:test_004()/217 +location: clients/tests/test-client.py:1039:test_004()/217 cmd: $NMCLI --terse dev s lang: C returncode: 0 @@ -13983,7 +13983,7 @@ wlan0:wifi:unavailable:con-vpn-1 <<< size: 279 -location: clients/tests/test-client.py:1031:test_004()/218 +location: clients/tests/test-client.py:1039:test_004()/218 cmd: $NMCLI --terse dev s lang: pl_PL.UTF-8 returncode: 0 @@ -13997,7 +13997,7 @@ wlan0:wifi:unavailable:con-vpn-1 <<< size: 587 -location: clients/tests/test-client.py:1034:test_004()/219 +location: clients/tests/test-client.py:1042:test_004()/219 cmd: $NMCLI --terse -f all dev status lang: C returncode: 0 @@ -14011,7 +14011,7 @@ wlan0:wifi:unavailable:/org/freedesktop/NetworkManager/Devices/3:con-vpn-1:UUID- <<< size: 597 -location: clients/tests/test-client.py:1034:test_004()/220 +location: clients/tests/test-client.py:1042:test_004()/220 cmd: $NMCLI --terse -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -14025,7 +14025,7 @@ wlan0:wifi:unavailable:/org/freedesktop/NetworkManager/Devices/3:con-vpn-1:UUID- <<< size: 4540 -location: clients/tests/test-client.py:1037:test_004()/221 +location: clients/tests/test-client.py:1045:test_004()/221 cmd: $NMCLI --terse dev show lang: C returncode: 0 @@ -14171,7 +14171,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 4550 -location: clients/tests/test-client.py:1037:test_004()/222 +location: clients/tests/test-client.py:1045:test_004()/222 cmd: $NMCLI --terse dev show lang: pl_PL.UTF-8 returncode: 0 @@ -14317,7 +14317,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 11567 -location: clients/tests/test-client.py:1040:test_004()/223 +location: clients/tests/test-client.py:1048:test_004()/223 cmd: $NMCLI --terse -f all dev show lang: C returncode: 0 @@ -14696,7 +14696,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 11613 -location: clients/tests/test-client.py:1040:test_004()/224 +location: clients/tests/test-client.py:1048:test_004()/224 cmd: $NMCLI --terse -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -15075,7 +15075,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 882 -location: clients/tests/test-client.py:1043:test_004()/225 +location: clients/tests/test-client.py:1051:test_004()/225 cmd: $NMCLI --terse dev show wlan0 lang: C returncode: 0 @@ -15108,7 +15108,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 892 -location: clients/tests/test-client.py:1043:test_004()/226 +location: clients/tests/test-client.py:1051:test_004()/226 cmd: $NMCLI --terse dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15141,7 +15141,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2629 -location: clients/tests/test-client.py:1046:test_004()/227 +location: clients/tests/test-client.py:1054:test_004()/227 cmd: $NMCLI --terse -f all dev show wlan0 lang: C returncode: 0 @@ -15239,7 +15239,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2666 -location: clients/tests/test-client.py:1046:test_004()/228 +location: clients/tests/test-client.py:1054:test_004()/228 cmd: $NMCLI --terse -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15337,7 +15337,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 1116 -location: clients/tests/test-client.py:1049:test_004()/229 +location: clients/tests/test-client.py:1057:test_004()/229 cmd: $NMCLI --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -15380,7 +15380,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1126 -location: clients/tests/test-client.py:1049:test_004()/230 +location: clients/tests/test-client.py:1057:test_004()/230 cmd: $NMCLI --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15423,7 +15423,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1116 -location: clients/tests/test-client.py:1052:test_004()/231 +location: clients/tests/test-client.py:1060:test_004()/231 cmd: $NMCLI --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -15466,7 +15466,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1126 -location: clients/tests/test-client.py:1052:test_004()/232 +location: clients/tests/test-client.py:1060:test_004()/232 cmd: $NMCLI --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15509,7 +15509,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 428 -location: clients/tests/test-client.py:1055:test_004()/233 +location: clients/tests/test-client.py:1063:test_004()/233 cmd: $NMCLI --terse -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -15523,7 +15523,7 @@ wlan0:wifi:/org/freedesktop/NetworkManager/Devices/3 <<< size: 438 -location: clients/tests/test-client.py:1055:test_004()/234 +location: clients/tests/test-client.py:1063:test_004()/234 cmd: $NMCLI --terse -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -15537,7 +15537,7 @@ wlan0:wifi:/org/freedesktop/NetworkManager/Devices/3 <<< size: 1175 -location: clients/tests/test-client.py:1058:test_004()/235 +location: clients/tests/test-client.py:1066:test_004()/235 cmd: $NMCLI --terse -f ALL device wifi list lang: C returncode: 0 @@ -15552,7 +15552,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infra:1:2412 MHz:54 <<< size: 1233 -location: clients/tests/test-client.py:1058:test_004()/236 +location: clients/tests/test-client.py:1066:test_004()/236 cmd: $NMCLI --terse -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -15567,7 +15567,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infrastruktura:1:24 <<< size: 353 -location: clients/tests/test-client.py:1060:test_004()/237 +location: clients/tests/test-client.py:1068:test_004()/237 cmd: $NMCLI --terse -f COMMON device wifi list lang: C returncode: 0 @@ -15582,7 +15582,7 @@ stdout: 198 bytes <<< size: 399 -location: clients/tests/test-client.py:1060:test_004()/238 +location: clients/tests/test-client.py:1068:test_004()/238 cmd: $NMCLI --terse -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -15597,7 +15597,7 @@ stdout: 234 bytes <<< size: 1288 -location: clients/tests/test-client.py:1063:test_004()/239 +location: clients/tests/test-client.py:1071:test_004()/239 cmd: $NMCLI --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -15612,7 +15612,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infra:1:2412 MHz:54 <<< size: 1346 -location: clients/tests/test-client.py:1063:test_004()/240 +location: clients/tests/test-client.py:1071:test_004()/240 cmd: $NMCLI --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -15627,7 +15627,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infrastruktura:1:24 <<< size: 431 -location: clients/tests/test-client.py:1065:test_004()/241 +location: clients/tests/test-client.py:1073:test_004()/241 cmd: $NMCLI --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -15637,7 +15637,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infra:1:2412 MHz:54 <<< size: 453 -location: clients/tests/test-client.py:1065:test_004()/242 +location: clients/tests/test-client.py:1073:test_004()/242 cmd: $NMCLI --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -15647,7 +15647,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infrastruktura:1:24 <<< size: 227 -location: clients/tests/test-client.py:1067:test_004()/243 +location: clients/tests/test-client.py:1075:test_004()/243 cmd: $NMCLI --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -15657,7 +15657,7 @@ stdout: 49 bytes <<< size: 246 -location: clients/tests/test-client.py:1067:test_004()/244 +location: clients/tests/test-client.py:1075:test_004()/244 cmd: $NMCLI --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -15667,7 +15667,7 @@ stdout: 58 bytes <<< size: 544 -location: clients/tests/test-client.py:1070:test_004()/245 +location: clients/tests/test-client.py:1078:test_004()/245 cmd: $NMCLI --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -15677,7 +15677,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infra:1:2412 MHz:54 <<< size: 566 -location: clients/tests/test-client.py:1070:test_004()/246 +location: clients/tests/test-client.py:1078:test_004()/246 cmd: $NMCLI --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -15687,7 +15687,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infrastruktura:1:24 <<< size: 2632 -location: clients/tests/test-client.py:1072:test_004()/247 +location: clients/tests/test-client.py:1080:test_004()/247 cmd: $NMCLI --terse -f ALL device show wlan0 lang: C returncode: 0 @@ -15785,7 +15785,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2669 -location: clients/tests/test-client.py:1072:test_004()/248 +location: clients/tests/test-client.py:1080:test_004()/248 cmd: $NMCLI --terse -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15883,7 +15883,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 895 -location: clients/tests/test-client.py:1074:test_004()/249 +location: clients/tests/test-client.py:1082:test_004()/249 cmd: $NMCLI --terse -f COMMON device show wlan0 lang: C returncode: 0 @@ -15916,7 +15916,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 905 -location: clients/tests/test-client.py:1074:test_004()/250 +location: clients/tests/test-client.py:1082:test_004()/250 cmd: $NMCLI --terse -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -15949,7 +15949,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2770 -location: clients/tests/test-client.py:1076:test_004()/251 +location: clients/tests/test-client.py:1084:test_004()/251 cmd: $NMCLI --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -16047,7 +16047,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2807 -location: clients/tests/test-client.py:1076:test_004()/252 +location: clients/tests/test-client.py:1084:test_004()/252 cmd: $NMCLI --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -16145,7 +16145,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2335 -location: clients/tests/test-client.py:1014:test_004()/253 +location: clients/tests/test-client.py:1022:test_004()/253 cmd: $NMCLI --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -16247,7 +16247,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2345 -location: clients/tests/test-client.py:1014:test_004()/254 +location: clients/tests/test-client.py:1022:test_004()/254 cmd: $NMCLI --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -16349,7 +16349,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2335 -location: clients/tests/test-client.py:1016:test_004()/255 +location: clients/tests/test-client.py:1024:test_004()/255 cmd: $NMCLI --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -16451,7 +16451,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2345 -location: clients/tests/test-client.py:1016:test_004()/256 +location: clients/tests/test-client.py:1024:test_004()/256 cmd: $NMCLI --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -16553,7 +16553,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 1783 -location: clients/tests/test-client.py:1019:test_004()/257 +location: clients/tests/test-client.py:1027:test_004()/257 cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -16635,7 +16635,7 @@ proxy.pac-script: <<< size: 1793 -location: clients/tests/test-client.py:1019:test_004()/258 +location: clients/tests/test-client.py:1027:test_004()/258 cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -16717,7 +16717,7 @@ proxy.pac-script: <<< size: 334 -location: clients/tests/test-client.py:1025:test_004()/259 +location: clients/tests/test-client.py:1033:test_004()/259 cmd: $NMCLI --terse --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -16732,7 +16732,7 @@ vpn.timeout:0 <<< size: 344 -location: clients/tests/test-client.py:1025:test_004()/260 +location: clients/tests/test-client.py:1033:test_004()/260 cmd: $NMCLI --terse --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -16747,7 +16747,7 @@ vpn.timeout:0 <<< size: 537 -location: clients/tests/test-client.py:1028:test_004()/261 +location: clients/tests/test-client.py:1036:test_004()/261 cmd: $NMCLI --terse --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -16768,7 +16768,7 @@ GENERAL.MASTER-PATH: <<< size: 547 -location: clients/tests/test-client.py:1028:test_004()/262 +location: clients/tests/test-client.py:1036:test_004()/262 cmd: $NMCLI --terse --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -16789,7 +16789,7 @@ GENERAL.MASTER-PATH: <<< size: 441 -location: clients/tests/test-client.py:1031:test_004()/263 +location: clients/tests/test-client.py:1039:test_004()/263 cmd: $NMCLI --terse --color yes dev s lang: C returncode: 0 @@ -16803,7 +16803,7 @@ stdout: 295 bytes <<< size: 451 -location: clients/tests/test-client.py:1031:test_004()/264 +location: clients/tests/test-client.py:1039:test_004()/264 cmd: $NMCLI --terse --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -16817,7 +16817,7 @@ stdout: 295 bytes <<< size: 879 -location: clients/tests/test-client.py:1034:test_004()/265 +location: clients/tests/test-client.py:1042:test_004()/265 cmd: $NMCLI --terse --color yes -f all dev status lang: C returncode: 0 @@ -16831,7 +16831,7 @@ stdout: 721 bytes <<< size: 889 -location: clients/tests/test-client.py:1034:test_004()/266 +location: clients/tests/test-client.py:1042:test_004()/266 cmd: $NMCLI --terse --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -16845,7 +16845,7 @@ stdout: 721 bytes <<< size: 4552 -location: clients/tests/test-client.py:1037:test_004()/267 +location: clients/tests/test-client.py:1045:test_004()/267 cmd: $NMCLI --terse --color yes dev show lang: C returncode: 0 @@ -16991,7 +16991,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 4562 -location: clients/tests/test-client.py:1037:test_004()/268 +location: clients/tests/test-client.py:1045:test_004()/268 cmd: $NMCLI --terse --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -17137,7 +17137,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 11867 -location: clients/tests/test-client.py:1040:test_004()/269 +location: clients/tests/test-client.py:1048:test_004()/269 cmd: $NMCLI --terse --color yes -f all dev show lang: C returncode: 0 @@ -17516,7 +17516,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 11913 -location: clients/tests/test-client.py:1040:test_004()/270 +location: clients/tests/test-client.py:1048:test_004()/270 cmd: $NMCLI --terse --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -17895,7 +17895,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 894 -location: clients/tests/test-client.py:1043:test_004()/271 +location: clients/tests/test-client.py:1051:test_004()/271 cmd: $NMCLI --terse --color yes dev show wlan0 lang: C returncode: 0 @@ -17928,7 +17928,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 904 -location: clients/tests/test-client.py:1043:test_004()/272 +location: clients/tests/test-client.py:1051:test_004()/272 cmd: $NMCLI --terse --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -17961,7 +17961,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2857 -location: clients/tests/test-client.py:1046:test_004()/273 +location: clients/tests/test-client.py:1054:test_004()/273 cmd: $NMCLI --terse --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -18059,7 +18059,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2894 -location: clients/tests/test-client.py:1046:test_004()/274 +location: clients/tests/test-client.py:1054:test_004()/274 cmd: $NMCLI --terse --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18157,7 +18157,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 1128 -location: clients/tests/test-client.py:1049:test_004()/275 +location: clients/tests/test-client.py:1057:test_004()/275 cmd: $NMCLI --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -18200,7 +18200,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1138 -location: clients/tests/test-client.py:1049:test_004()/276 +location: clients/tests/test-client.py:1057:test_004()/276 cmd: $NMCLI --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18243,7 +18243,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1128 -location: clients/tests/test-client.py:1052:test_004()/277 +location: clients/tests/test-client.py:1060:test_004()/277 cmd: $NMCLI --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -18286,7 +18286,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1138 -location: clients/tests/test-client.py:1052:test_004()/278 +location: clients/tests/test-client.py:1060:test_004()/278 cmd: $NMCLI --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18329,7 +18329,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 560 -location: clients/tests/test-client.py:1055:test_004()/279 +location: clients/tests/test-client.py:1063:test_004()/279 cmd: $NMCLI --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -18343,7 +18343,7 @@ stdout: 391 bytes <<< size: 570 -location: clients/tests/test-client.py:1055:test_004()/280 +location: clients/tests/test-client.py:1063:test_004()/280 cmd: $NMCLI --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -18357,7 +18357,7 @@ stdout: 391 bytes <<< size: 1799 -location: clients/tests/test-client.py:1058:test_004()/281 +location: clients/tests/test-client.py:1066:test_004()/281 cmd: $NMCLI --terse --color yes -f ALL device wifi list lang: C returncode: 0 @@ -18372,7 +18372,7 @@ stdout: 1634 bytes <<< size: 1857 -location: clients/tests/test-client.py:1058:test_004()/282 +location: clients/tests/test-client.py:1066:test_004()/282 cmd: $NMCLI --terse --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -18387,7 +18387,7 @@ stdout: 1682 bytes <<< size: 653 -location: clients/tests/test-client.py:1060:test_004()/283 +location: clients/tests/test-client.py:1068:test_004()/283 cmd: $NMCLI --terse --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -18402,7 +18402,7 @@ stdout: 486 bytes <<< size: 699 -location: clients/tests/test-client.py:1060:test_004()/284 +location: clients/tests/test-client.py:1068:test_004()/284 cmd: $NMCLI --terse --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -18417,7 +18417,7 @@ stdout: 522 bytes <<< size: 1912 -location: clients/tests/test-client.py:1063:test_004()/285 +location: clients/tests/test-client.py:1071:test_004()/285 cmd: $NMCLI --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -18432,7 +18432,7 @@ stdout: 1634 bytes <<< size: 1970 -location: clients/tests/test-client.py:1063:test_004()/286 +location: clients/tests/test-client.py:1071:test_004()/286 cmd: $NMCLI --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -18447,7 +18447,7 @@ stdout: 1682 bytes <<< size: 596 -location: clients/tests/test-client.py:1065:test_004()/287 +location: clients/tests/test-client.py:1073:test_004()/287 cmd: $NMCLI --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -18457,7 +18457,7 @@ stdout: 408 bytes <<< size: 618 -location: clients/tests/test-client.py:1065:test_004()/288 +location: clients/tests/test-client.py:1073:test_004()/288 cmd: $NMCLI --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -18467,7 +18467,7 @@ stdout: 420 bytes <<< size: 312 -location: clients/tests/test-client.py:1067:test_004()/289 +location: clients/tests/test-client.py:1075:test_004()/289 cmd: $NMCLI --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -18477,7 +18477,7 @@ stdout: 121 bytes <<< size: 331 -location: clients/tests/test-client.py:1067:test_004()/290 +location: clients/tests/test-client.py:1075:test_004()/290 cmd: $NMCLI --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -18487,7 +18487,7 @@ stdout: 130 bytes <<< size: 709 -location: clients/tests/test-client.py:1070:test_004()/291 +location: clients/tests/test-client.py:1078:test_004()/291 cmd: $NMCLI --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -18497,7 +18497,7 @@ stdout: 408 bytes <<< size: 731 -location: clients/tests/test-client.py:1070:test_004()/292 +location: clients/tests/test-client.py:1078:test_004()/292 cmd: $NMCLI --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -18507,7 +18507,7 @@ stdout: 420 bytes <<< size: 2860 -location: clients/tests/test-client.py:1072:test_004()/293 +location: clients/tests/test-client.py:1080:test_004()/293 cmd: $NMCLI --terse --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -18605,7 +18605,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2897 -location: clients/tests/test-client.py:1072:test_004()/294 +location: clients/tests/test-client.py:1080:test_004()/294 cmd: $NMCLI --terse --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18703,7 +18703,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 907 -location: clients/tests/test-client.py:1074:test_004()/295 +location: clients/tests/test-client.py:1082:test_004()/295 cmd: $NMCLI --terse --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -18736,7 +18736,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 917 -location: clients/tests/test-client.py:1074:test_004()/296 +location: clients/tests/test-client.py:1082:test_004()/296 cmd: $NMCLI --terse --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18769,7 +18769,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2998 -location: clients/tests/test-client.py:1076:test_004()/297 +location: clients/tests/test-client.py:1084:test_004()/297 cmd: $NMCLI --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -18867,7 +18867,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 3035 -location: clients/tests/test-client.py:1076:test_004()/298 +location: clients/tests/test-client.py:1084:test_004()/298 cmd: $NMCLI --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -18965,7 +18965,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2978 -location: clients/tests/test-client.py:1014:test_004()/299 +location: clients/tests/test-client.py:1022:test_004()/299 cmd: $NMCLI --mode tabular con s con-vpn-1 lang: C returncode: 0 @@ -18994,7 +18994,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 2999 -location: clients/tests/test-client.py:1014:test_004()/300 +location: clients/tests/test-client.py:1022:test_004()/300 cmd: $NMCLI --mode tabular con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -19023,7 +19023,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 2978 -location: clients/tests/test-client.py:1016:test_004()/301 +location: clients/tests/test-client.py:1024:test_004()/301 cmd: $NMCLI --mode tabular con s con-vpn-1 lang: C returncode: 0 @@ -19052,7 +19052,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 2999 -location: clients/tests/test-client.py:1016:test_004()/302 +location: clients/tests/test-client.py:1024:test_004()/302 cmd: $NMCLI --mode tabular con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -19081,7 +19081,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 2246 -location: clients/tests/test-client.py:1019:test_004()/303 +location: clients/tests/test-client.py:1027:test_004()/303 cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -19105,7 +19105,7 @@ proxy none no -- -- <<< size: 2258 -location: clients/tests/test-client.py:1019:test_004()/304 +location: clients/tests/test-client.py:1027:test_004()/304 cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -19129,7 +19129,7 @@ proxy none nie -- -- <<< size: 412 -location: clients/tests/test-client.py:1025:test_004()/305 +location: clients/tests/test-client.py:1033:test_004()/305 cmd: $NMCLI --mode tabular -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -19140,7 +19140,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 422 -location: clients/tests/test-client.py:1025:test_004()/306 +location: clients/tests/test-client.py:1033:test_004()/306 cmd: $NMCLI --mode tabular -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -19151,7 +19151,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 644 -location: clients/tests/test-client.py:1028:test_004()/307 +location: clients/tests/test-client.py:1036:test_004()/307 cmd: $NMCLI --mode tabular -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -19162,7 +19162,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 activated no <<< size: 656 -location: clients/tests/test-client.py:1028:test_004()/308 +location: clients/tests/test-client.py:1036:test_004()/308 cmd: $NMCLI --mode tabular -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -19173,7 +19173,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 aktywowano n <<< size: 399 -location: clients/tests/test-client.py:1031:test_004()/309 +location: clients/tests/test-client.py:1039:test_004()/309 cmd: $NMCLI --mode tabular dev s lang: C returncode: 0 @@ -19188,7 +19188,7 @@ wlan0 wifi unavailable con-vpn-1 <<< size: 414 -location: clients/tests/test-client.py:1031:test_004()/310 +location: clients/tests/test-client.py:1039:test_004()/310 cmd: $NMCLI --mode tabular dev s lang: pl_PL.UTF-8 returncode: 0 @@ -19203,7 +19203,7 @@ wlan0 wifi niedostępne con-vpn-1 <<< size: 1210 -location: clients/tests/test-client.py:1034:test_004()/311 +location: clients/tests/test-client.py:1042:test_004()/311 cmd: $NMCLI --mode tabular -f all dev status lang: C returncode: 0 @@ -19218,7 +19218,7 @@ wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 con-vp <<< size: 1225 -location: clients/tests/test-client.py:1034:test_004()/312 +location: clients/tests/test-client.py:1042:test_004()/312 cmd: $NMCLI --mode tabular -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -19233,7 +19233,7 @@ wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 con-v <<< size: 6361 -location: clients/tests/test-client.py:1037:test_004()/313 +location: clients/tests/test-client.py:1045:test_004()/313 cmd: $NMCLI --mode tabular dev show lang: C returncode: 0 @@ -19382,7 +19382,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 6388 -location: clients/tests/test-client.py:1037:test_004()/314 +location: clients/tests/test-client.py:1045:test_004()/314 cmd: $NMCLI --mode tabular dev show lang: pl_PL.UTF-8 returncode: 0 @@ -19531,7 +19531,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 14501 -location: clients/tests/test-client.py:1040:test_004()/315 +location: clients/tests/test-client.py:1048:test_004()/315 cmd: $NMCLI --mode tabular -f all dev show lang: C returncode: 0 @@ -19669,7 +19669,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 14660 -location: clients/tests/test-client.py:1040:test_004()/316 +location: clients/tests/test-client.py:1048:test_004()/316 cmd: $NMCLI --mode tabular -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -19807,7 +19807,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1130 -location: clients/tests/test-client.py:1043:test_004()/317 +location: clients/tests/test-client.py:1051:test_004()/317 cmd: $NMCLI --mode tabular dev show wlan0 lang: C returncode: 0 @@ -19842,7 +19842,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1141 -location: clients/tests/test-client.py:1043:test_004()/318 +location: clients/tests/test-client.py:1051:test_004()/318 cmd: $NMCLI --mode tabular dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -19877,7 +19877,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 2940 -location: clients/tests/test-client.py:1046:test_004()/319 +location: clients/tests/test-client.py:1054:test_004()/319 cmd: $NMCLI --mode tabular -f all dev show wlan0 lang: C returncode: 0 @@ -19914,7 +19914,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3003 -location: clients/tests/test-client.py:1046:test_004()/320 +location: clients/tests/test-client.py:1054:test_004()/320 cmd: $NMCLI --mode tabular -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -19951,7 +19951,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1178 -location: clients/tests/test-client.py:1049:test_004()/321 +location: clients/tests/test-client.py:1057:test_004()/321 cmd: $NMCLI --mode tabular -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -19968,7 +19968,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1206 -location: clients/tests/test-client.py:1049:test_004()/322 +location: clients/tests/test-client.py:1057:test_004()/322 cmd: $NMCLI --mode tabular -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -19985,7 +19985,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 1178 -location: clients/tests/test-client.py:1052:test_004()/323 +location: clients/tests/test-client.py:1060:test_004()/323 cmd: $NMCLI --mode tabular -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -20002,7 +20002,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1206 -location: clients/tests/test-client.py:1052:test_004()/324 +location: clients/tests/test-client.py:1060:test_004()/324 cmd: $NMCLI --mode tabular -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -20019,7 +20019,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 530 -location: clients/tests/test-client.py:1055:test_004()/325 +location: clients/tests/test-client.py:1063:test_004()/325 cmd: $NMCLI --mode tabular -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -20034,7 +20034,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 540 -location: clients/tests/test-client.py:1055:test_004()/326 +location: clients/tests/test-client.py:1063:test_004()/326 cmd: $NMCLI --mode tabular -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -20049,7 +20049,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 2000 -location: clients/tests/test-client.py:1058:test_004()/327 +location: clients/tests/test-client.py:1066:test_004()/327 cmd: $NMCLI --mode tabular -f ALL device wifi list lang: C returncode: 0 @@ -20067,7 +20067,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 2068 -location: clients/tests/test-client.py:1058:test_004()/328 +location: clients/tests/test-client.py:1066:test_004()/328 cmd: $NMCLI --mode tabular -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -20085,7 +20085,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 634 -location: clients/tests/test-client.py:1060:test_004()/329 +location: clients/tests/test-client.py:1068:test_004()/329 cmd: $NMCLI --mode tabular -f COMMON device wifi list lang: C returncode: 0 @@ -20103,7 +20103,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 694 -location: clients/tests/test-client.py:1060:test_004()/330 +location: clients/tests/test-client.py:1068:test_004()/330 cmd: $NMCLI --mode tabular -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -20121,7 +20121,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 2113 -location: clients/tests/test-client.py:1063:test_004()/331 +location: clients/tests/test-client.py:1071:test_004()/331 cmd: $NMCLI --mode tabular -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -20139,7 +20139,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 2181 -location: clients/tests/test-client.py:1063:test_004()/332 +location: clients/tests/test-client.py:1071:test_004()/332 cmd: $NMCLI --mode tabular -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -20157,7 +20157,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 751 -location: clients/tests/test-client.py:1065:test_004()/333 +location: clients/tests/test-client.py:1073:test_004()/333 cmd: $NMCLI --mode tabular -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -20168,7 +20168,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 779 -location: clients/tests/test-client.py:1065:test_004()/334 +location: clients/tests/test-client.py:1073:test_004()/334 cmd: $NMCLI --mode tabular -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -20179,7 +20179,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 324 -location: clients/tests/test-client.py:1067:test_004()/335 +location: clients/tests/test-client.py:1075:test_004()/335 cmd: $NMCLI --mode tabular -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -20190,7 +20190,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 350 -location: clients/tests/test-client.py:1067:test_004()/336 +location: clients/tests/test-client.py:1075:test_004()/336 cmd: $NMCLI --mode tabular -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -20201,7 +20201,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 864 -location: clients/tests/test-client.py:1070:test_004()/337 +location: clients/tests/test-client.py:1078:test_004()/337 cmd: $NMCLI --mode tabular -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -20212,7 +20212,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 892 -location: clients/tests/test-client.py:1070:test_004()/338 +location: clients/tests/test-client.py:1078:test_004()/338 cmd: $NMCLI --mode tabular -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -20223,7 +20223,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 2943 -location: clients/tests/test-client.py:1072:test_004()/339 +location: clients/tests/test-client.py:1080:test_004()/339 cmd: $NMCLI --mode tabular -f ALL device show wlan0 lang: C returncode: 0 @@ -20260,7 +20260,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3006 -location: clients/tests/test-client.py:1072:test_004()/340 +location: clients/tests/test-client.py:1080:test_004()/340 cmd: $NMCLI --mode tabular -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -20297,7 +20297,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1143 -location: clients/tests/test-client.py:1074:test_004()/341 +location: clients/tests/test-client.py:1082:test_004()/341 cmd: $NMCLI --mode tabular -f COMMON device show wlan0 lang: C returncode: 0 @@ -20332,7 +20332,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1154 -location: clients/tests/test-client.py:1074:test_004()/342 +location: clients/tests/test-client.py:1082:test_004()/342 cmd: $NMCLI --mode tabular -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -20367,7 +20367,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 3081 -location: clients/tests/test-client.py:1076:test_004()/343 +location: clients/tests/test-client.py:1084:test_004()/343 cmd: $NMCLI --mode tabular -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -20404,7 +20404,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3144 -location: clients/tests/test-client.py:1076:test_004()/344 +location: clients/tests/test-client.py:1084:test_004()/344 cmd: $NMCLI --mode tabular -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -20441,7 +20441,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 2990 -location: clients/tests/test-client.py:1014:test_004()/345 +location: clients/tests/test-client.py:1022:test_004()/345 cmd: $NMCLI --mode tabular --color yes con s con-vpn-1 lang: C returncode: 0 @@ -20470,7 +20470,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 3011 -location: clients/tests/test-client.py:1014:test_004()/346 +location: clients/tests/test-client.py:1022:test_004()/346 cmd: $NMCLI --mode tabular --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -20499,7 +20499,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 2990 -location: clients/tests/test-client.py:1016:test_004()/347 +location: clients/tests/test-client.py:1024:test_004()/347 cmd: $NMCLI --mode tabular --color yes con s con-vpn-1 lang: C returncode: 0 @@ -20528,7 +20528,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 3011 -location: clients/tests/test-client.py:1016:test_004()/348 +location: clients/tests/test-client.py:1024:test_004()/348 cmd: $NMCLI --mode tabular --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -20557,7 +20557,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 2258 -location: clients/tests/test-client.py:1019:test_004()/349 +location: clients/tests/test-client.py:1027:test_004()/349 cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -20581,7 +20581,7 @@ proxy none no -- -- <<< size: 2270 -location: clients/tests/test-client.py:1019:test_004()/350 +location: clients/tests/test-client.py:1027:test_004()/350 cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -20605,7 +20605,7 @@ proxy none nie -- -- <<< size: 424 -location: clients/tests/test-client.py:1025:test_004()/351 +location: clients/tests/test-client.py:1033:test_004()/351 cmd: $NMCLI --mode tabular --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -20616,7 +20616,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 434 -location: clients/tests/test-client.py:1025:test_004()/352 +location: clients/tests/test-client.py:1033:test_004()/352 cmd: $NMCLI --mode tabular --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -20627,7 +20627,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 656 -location: clients/tests/test-client.py:1028:test_004()/353 +location: clients/tests/test-client.py:1036:test_004()/353 cmd: $NMCLI --mode tabular --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -20638,7 +20638,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 activated no <<< size: 668 -location: clients/tests/test-client.py:1028:test_004()/354 +location: clients/tests/test-client.py:1036:test_004()/354 cmd: $NMCLI --mode tabular --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -20649,7 +20649,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 aktywowano n <<< size: 571 -location: clients/tests/test-client.py:1031:test_004()/355 +location: clients/tests/test-client.py:1039:test_004()/355 cmd: $NMCLI --mode tabular --color yes dev s lang: C returncode: 0 @@ -20664,7 +20664,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 586 -location: clients/tests/test-client.py:1031:test_004()/356 +location: clients/tests/test-client.py:1039:test_004()/356 cmd: $NMCLI --mode tabular --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -20679,7 +20679,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 1502 -location: clients/tests/test-client.py:1034:test_004()/357 +location: clients/tests/test-client.py:1042:test_004()/357 cmd: $NMCLI --mode tabular --color yes -f all dev status lang: C returncode: 0 @@ -20694,7 +20694,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 1517 -location: clients/tests/test-client.py:1034:test_004()/358 +location: clients/tests/test-client.py:1042:test_004()/358 cmd: $NMCLI --mode tabular --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -20709,7 +20709,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 6373 -location: clients/tests/test-client.py:1037:test_004()/359 +location: clients/tests/test-client.py:1045:test_004()/359 cmd: $NMCLI --mode tabular --color yes dev show lang: C returncode: 0 @@ -20858,7 +20858,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 6400 -location: clients/tests/test-client.py:1037:test_004()/360 +location: clients/tests/test-client.py:1045:test_004()/360 cmd: $NMCLI --mode tabular --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -21007,7 +21007,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 14837 -location: clients/tests/test-client.py:1040:test_004()/361 +location: clients/tests/test-client.py:1048:test_004()/361 cmd: $NMCLI --mode tabular --color yes -f all dev show lang: C returncode: 0 @@ -21145,7 +21145,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 14996 -location: clients/tests/test-client.py:1040:test_004()/362 +location: clients/tests/test-client.py:1048:test_004()/362 cmd: $NMCLI --mode tabular --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -21283,7 +21283,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1142 -location: clients/tests/test-client.py:1043:test_004()/363 +location: clients/tests/test-client.py:1051:test_004()/363 cmd: $NMCLI --mode tabular --color yes dev show wlan0 lang: C returncode: 0 @@ -21318,7 +21318,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1153 -location: clients/tests/test-client.py:1043:test_004()/364 +location: clients/tests/test-client.py:1051:test_004()/364 cmd: $NMCLI --mode tabular --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21353,7 +21353,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 3195 -location: clients/tests/test-client.py:1046:test_004()/365 +location: clients/tests/test-client.py:1054:test_004()/365 cmd: $NMCLI --mode tabular --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -21390,7 +21390,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3258 -location: clients/tests/test-client.py:1046:test_004()/366 +location: clients/tests/test-client.py:1054:test_004()/366 cmd: $NMCLI --mode tabular --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21427,7 +21427,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1190 -location: clients/tests/test-client.py:1049:test_004()/367 +location: clients/tests/test-client.py:1057:test_004()/367 cmd: $NMCLI --mode tabular --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -21444,7 +21444,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1218 -location: clients/tests/test-client.py:1049:test_004()/368 +location: clients/tests/test-client.py:1057:test_004()/368 cmd: $NMCLI --mode tabular --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21461,7 +21461,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 1190 -location: clients/tests/test-client.py:1052:test_004()/369 +location: clients/tests/test-client.py:1060:test_004()/369 cmd: $NMCLI --mode tabular --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -21478,7 +21478,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1218 -location: clients/tests/test-client.py:1052:test_004()/370 +location: clients/tests/test-client.py:1060:test_004()/370 cmd: $NMCLI --mode tabular --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21495,7 +21495,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 662 -location: clients/tests/test-client.py:1055:test_004()/371 +location: clients/tests/test-client.py:1063:test_004()/371 cmd: $NMCLI --mode tabular --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -21510,7 +21510,7 @@ DEVICE TYPE DBUS-PATH <<< size: 672 -location: clients/tests/test-client.py:1055:test_004()/372 +location: clients/tests/test-client.py:1063:test_004()/372 cmd: $NMCLI --mode tabular --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -21525,7 +21525,7 @@ DEVICE TYPE DBUS-PATH <<< size: 2624 -location: clients/tests/test-client.py:1058:test_004()/373 +location: clients/tests/test-client.py:1066:test_004()/373 cmd: $NMCLI --mode tabular --color yes -f ALL device wifi list lang: C returncode: 0 @@ -21543,7 +21543,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 2692 -location: clients/tests/test-client.py:1058:test_004()/374 +location: clients/tests/test-client.py:1066:test_004()/374 cmd: $NMCLI --mode tabular --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -21561,7 +21561,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 934 -location: clients/tests/test-client.py:1060:test_004()/375 +location: clients/tests/test-client.py:1068:test_004()/375 cmd: $NMCLI --mode tabular --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -21579,7 +21579,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 994 -location: clients/tests/test-client.py:1060:test_004()/376 +location: clients/tests/test-client.py:1068:test_004()/376 cmd: $NMCLI --mode tabular --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -21597,7 +21597,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 2737 -location: clients/tests/test-client.py:1063:test_004()/377 +location: clients/tests/test-client.py:1071:test_004()/377 cmd: $NMCLI --mode tabular --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -21615,7 +21615,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 2805 -location: clients/tests/test-client.py:1063:test_004()/378 +location: clients/tests/test-client.py:1071:test_004()/378 cmd: $NMCLI --mode tabular --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -21633,7 +21633,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 916 -location: clients/tests/test-client.py:1065:test_004()/379 +location: clients/tests/test-client.py:1073:test_004()/379 cmd: $NMCLI --mode tabular --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -21644,7 +21644,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 944 -location: clients/tests/test-client.py:1065:test_004()/380 +location: clients/tests/test-client.py:1073:test_004()/380 cmd: $NMCLI --mode tabular --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -21655,7 +21655,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 408 -location: clients/tests/test-client.py:1067:test_004()/381 +location: clients/tests/test-client.py:1075:test_004()/381 cmd: $NMCLI --mode tabular --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -21666,7 +21666,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 434 -location: clients/tests/test-client.py:1067:test_004()/382 +location: clients/tests/test-client.py:1075:test_004()/382 cmd: $NMCLI --mode tabular --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -21677,7 +21677,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1029 -location: clients/tests/test-client.py:1070:test_004()/383 +location: clients/tests/test-client.py:1078:test_004()/383 cmd: $NMCLI --mode tabular --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -21688,7 +21688,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1057 -location: clients/tests/test-client.py:1070:test_004()/384 +location: clients/tests/test-client.py:1078:test_004()/384 cmd: $NMCLI --mode tabular --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -21699,7 +21699,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 3198 -location: clients/tests/test-client.py:1072:test_004()/385 +location: clients/tests/test-client.py:1080:test_004()/385 cmd: $NMCLI --mode tabular --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -21736,7 +21736,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3261 -location: clients/tests/test-client.py:1072:test_004()/386 +location: clients/tests/test-client.py:1080:test_004()/386 cmd: $NMCLI --mode tabular --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21773,7 +21773,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1155 -location: clients/tests/test-client.py:1074:test_004()/387 +location: clients/tests/test-client.py:1082:test_004()/387 cmd: $NMCLI --mode tabular --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -21808,7 +21808,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1166 -location: clients/tests/test-client.py:1074:test_004()/388 +location: clients/tests/test-client.py:1082:test_004()/388 cmd: $NMCLI --mode tabular --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21843,7 +21843,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 3336 -location: clients/tests/test-client.py:1076:test_004()/389 +location: clients/tests/test-client.py:1084:test_004()/389 cmd: $NMCLI --mode tabular --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -21880,7 +21880,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 3399 -location: clients/tests/test-client.py:1076:test_004()/390 +location: clients/tests/test-client.py:1084:test_004()/390 cmd: $NMCLI --mode tabular --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -21917,7 +21917,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4742 -location: clients/tests/test-client.py:1014:test_004()/391 +location: clients/tests/test-client.py:1022:test_004()/391 cmd: $NMCLI --mode tabular --pretty con s con-vpn-1 lang: C returncode: 0 @@ -21959,7 +21959,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 4796 -location: clients/tests/test-client.py:1014:test_004()/392 +location: clients/tests/test-client.py:1022:test_004()/392 cmd: $NMCLI --mode tabular --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -22001,7 +22001,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 4742 -location: clients/tests/test-client.py:1016:test_004()/393 +location: clients/tests/test-client.py:1024:test_004()/393 cmd: $NMCLI --mode tabular --pretty con s con-vpn-1 lang: C returncode: 0 @@ -22043,7 +22043,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 4796 -location: clients/tests/test-client.py:1016:test_004()/394 +location: clients/tests/test-client.py:1024:test_004()/394 cmd: $NMCLI --mode tabular --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -22085,7 +22085,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 3428 -location: clients/tests/test-client.py:1019:test_004()/395 +location: clients/tests/test-client.py:1027:test_004()/395 cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -22117,7 +22117,7 @@ proxy none no -- -- <<< size: 3451 -location: clients/tests/test-client.py:1019:test_004()/396 +location: clients/tests/test-client.py:1027:test_004()/396 cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -22149,7 +22149,7 @@ proxy none nie -- -- <<< size: 676 -location: clients/tests/test-client.py:1025:test_004()/397 +location: clients/tests/test-client.py:1033:test_004()/397 cmd: $NMCLI --mode tabular --pretty -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -22164,7 +22164,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 696 -location: clients/tests/test-client.py:1025:test_004()/398 +location: clients/tests/test-client.py:1033:test_004()/398 cmd: $NMCLI --mode tabular --pretty -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -22179,7 +22179,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 1106 -location: clients/tests/test-client.py:1028:test_004()/399 +location: clients/tests/test-client.py:1036:test_004()/399 cmd: $NMCLI --mode tabular --pretty -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -22194,7 +22194,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 activated no <<< size: 1138 -location: clients/tests/test-client.py:1028:test_004()/400 +location: clients/tests/test-client.py:1036:test_004()/400 cmd: $NMCLI --mode tabular --pretty -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -22209,7 +22209,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 aktywowano n <<< size: 537 -location: clients/tests/test-client.py:1031:test_004()/401 +location: clients/tests/test-client.py:1039:test_004()/401 cmd: $NMCLI --mode tabular --pretty dev s lang: C returncode: 0 @@ -22228,7 +22228,7 @@ wlan0 wifi unavailable con-vpn-1 <<< size: 545 -location: clients/tests/test-client.py:1031:test_004()/402 +location: clients/tests/test-client.py:1039:test_004()/402 cmd: $NMCLI --mode tabular --pretty dev s lang: pl_PL.UTF-8 returncode: 0 @@ -22247,7 +22247,7 @@ wlan0 wifi niedostępne con-vpn-1 <<< size: 1481 -location: clients/tests/test-client.py:1034:test_004()/403 +location: clients/tests/test-client.py:1042:test_004()/403 cmd: $NMCLI --mode tabular --pretty -f all dev status lang: C returncode: 0 @@ -22266,7 +22266,7 @@ wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 con-vp <<< size: 1489 -location: clients/tests/test-client.py:1034:test_004()/404 +location: clients/tests/test-client.py:1042:test_004()/404 cmd: $NMCLI --mode tabular --pretty -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -22285,7 +22285,7 @@ wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 con-v <<< size: 9891 -location: clients/tests/test-client.py:1037:test_004()/405 +location: clients/tests/test-client.py:1045:test_004()/405 cmd: $NMCLI --mode tabular --pretty dev show lang: C returncode: 0 @@ -22496,7 +22496,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 10067 -location: clients/tests/test-client.py:1037:test_004()/406 +location: clients/tests/test-client.py:1045:test_004()/406 cmd: $NMCLI --mode tabular --pretty dev show lang: pl_PL.UTF-8 returncode: 0 @@ -22707,7 +22707,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 22050 -location: clients/tests/test-client.py:1040:test_004()/407 +location: clients/tests/test-client.py:1048:test_004()/407 cmd: $NMCLI --mode tabular --pretty -f all dev show lang: C returncode: 0 @@ -22903,7 +22903,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 22411 -location: clients/tests/test-client.py:1040:test_004()/408 +location: clients/tests/test-client.py:1048:test_004()/408 cmd: $NMCLI --mode tabular --pretty -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -23099,7 +23099,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1714 -location: clients/tests/test-client.py:1043:test_004()/409 +location: clients/tests/test-client.py:1051:test_004()/409 cmd: $NMCLI --mode tabular --pretty dev show wlan0 lang: C returncode: 0 @@ -23146,7 +23146,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1754 -location: clients/tests/test-client.py:1043:test_004()/410 +location: clients/tests/test-client.py:1051:test_004()/410 cmd: $NMCLI --mode tabular --pretty dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23193,7 +23193,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 4348 -location: clients/tests/test-client.py:1046:test_004()/411 +location: clients/tests/test-client.py:1054:test_004()/411 cmd: $NMCLI --mode tabular --pretty -f all dev show wlan0 lang: C returncode: 0 @@ -23242,7 +23242,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4456 -location: clients/tests/test-client.py:1046:test_004()/412 +location: clients/tests/test-client.py:1054:test_004()/412 cmd: $NMCLI --mode tabular --pretty -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23291,7 +23291,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1762 -location: clients/tests/test-client.py:1049:test_004()/413 +location: clients/tests/test-client.py:1057:test_004()/413 cmd: $NMCLI --mode tabular --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -23314,7 +23314,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1826 -location: clients/tests/test-client.py:1049:test_004()/414 +location: clients/tests/test-client.py:1057:test_004()/414 cmd: $NMCLI --mode tabular --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23337,7 +23337,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 1762 -location: clients/tests/test-client.py:1052:test_004()/415 +location: clients/tests/test-client.py:1060:test_004()/415 cmd: $NMCLI --mode tabular --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -23360,7 +23360,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1826 -location: clients/tests/test-client.py:1052:test_004()/416 +location: clients/tests/test-client.py:1060:test_004()/416 cmd: $NMCLI --mode tabular --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23383,7 +23383,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 686 -location: clients/tests/test-client.py:1055:test_004()/417 +location: clients/tests/test-client.py:1063:test_004()/417 cmd: $NMCLI --mode tabular --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -23402,7 +23402,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 689 -location: clients/tests/test-client.py:1055:test_004()/418 +location: clients/tests/test-client.py:1063:test_004()/418 cmd: $NMCLI --mode tabular --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -23421,7 +23421,7 @@ wlan0 wifi /org/freedesktop/NetworkManager/Devices/3 <<< size: 3041 -location: clients/tests/test-client.py:1058:test_004()/419 +location: clients/tests/test-client.py:1066:test_004()/419 cmd: $NMCLI --mode tabular --pretty -f ALL device wifi list lang: C returncode: 0 @@ -23451,7 +23451,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 3279 -location: clients/tests/test-client.py:1058:test_004()/420 +location: clients/tests/test-client.py:1066:test_004()/420 cmd: $NMCLI --mode tabular --pretty -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -23481,7 +23481,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 1167 -location: clients/tests/test-client.py:1060:test_004()/421 +location: clients/tests/test-client.py:1068:test_004()/421 cmd: $NMCLI --mode tabular --pretty -f COMMON device wifi list lang: C returncode: 0 @@ -23511,7 +23511,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1398 -location: clients/tests/test-client.py:1060:test_004()/422 +location: clients/tests/test-client.py:1068:test_004()/422 cmd: $NMCLI --mode tabular --pretty -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -23541,7 +23541,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 3154 -location: clients/tests/test-client.py:1063:test_004()/423 +location: clients/tests/test-client.py:1071:test_004()/423 cmd: $NMCLI --mode tabular --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -23571,7 +23571,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infra 1 2412 MH <<< size: 3392 -location: clients/tests/test-client.py:1063:test_004()/424 +location: clients/tests/test-client.py:1071:test_004()/424 cmd: $NMCLI --mode tabular --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -23601,7 +23601,7 @@ AP[3] wlan0-ap-3 776C616E302D61702D33 9B:F6:B7:EC:97:76 Infrastruktura 1 <<< size: 1154 -location: clients/tests/test-client.py:1065:test_004()/425 +location: clients/tests/test-client.py:1073:test_004()/425 cmd: $NMCLI --mode tabular --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -23616,7 +23616,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 1242 -location: clients/tests/test-client.py:1065:test_004()/426 +location: clients/tests/test-client.py:1073:test_004()/426 cmd: $NMCLI --mode tabular --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -23631,7 +23631,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 512 -location: clients/tests/test-client.py:1067:test_004()/427 +location: clients/tests/test-client.py:1075:test_004()/427 cmd: $NMCLI --mode tabular --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -23646,7 +23646,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 597 -location: clients/tests/test-client.py:1067:test_004()/428 +location: clients/tests/test-client.py:1075:test_004()/428 cmd: $NMCLI --mode tabular --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -23661,7 +23661,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1267 -location: clients/tests/test-client.py:1070:test_004()/429 +location: clients/tests/test-client.py:1078:test_004()/429 cmd: $NMCLI --mode tabular --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -23676,7 +23676,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infra 1 2412 MH <<< size: 1355 -location: clients/tests/test-client.py:1070:test_004()/430 +location: clients/tests/test-client.py:1078:test_004()/430 cmd: $NMCLI --mode tabular --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -23691,7 +23691,7 @@ AP[1] wlan0-ap-2 776C616E302D61702D32 C0:E2:BE:E8:EF:B6 Infrastruktura 1 <<< size: 4351 -location: clients/tests/test-client.py:1072:test_004()/431 +location: clients/tests/test-client.py:1080:test_004()/431 cmd: $NMCLI --mode tabular --pretty -f ALL device show wlan0 lang: C returncode: 0 @@ -23740,7 +23740,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4459 -location: clients/tests/test-client.py:1072:test_004()/432 +location: clients/tests/test-client.py:1080:test_004()/432 cmd: $NMCLI --mode tabular --pretty -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23789,7 +23789,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1727 -location: clients/tests/test-client.py:1074:test_004()/433 +location: clients/tests/test-client.py:1082:test_004()/433 cmd: $NMCLI --mode tabular --pretty -f COMMON device show wlan0 lang: C returncode: 0 @@ -23836,7 +23836,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1767 -location: clients/tests/test-client.py:1074:test_004()/434 +location: clients/tests/test-client.py:1082:test_004()/434 cmd: $NMCLI --mode tabular --pretty -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23883,7 +23883,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 4489 -location: clients/tests/test-client.py:1076:test_004()/435 +location: clients/tests/test-client.py:1084:test_004()/435 cmd: $NMCLI --mode tabular --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -23932,7 +23932,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4597 -location: clients/tests/test-client.py:1076:test_004()/436 +location: clients/tests/test-client.py:1084:test_004()/436 cmd: $NMCLI --mode tabular --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -23981,7 +23981,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4754 -location: clients/tests/test-client.py:1014:test_004()/437 +location: clients/tests/test-client.py:1022:test_004()/437 cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -24023,7 +24023,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 4808 -location: clients/tests/test-client.py:1014:test_004()/438 +location: clients/tests/test-client.py:1022:test_004()/438 cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -24065,7 +24065,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 4754 -location: clients/tests/test-client.py:1016:test_004()/439 +location: clients/tests/test-client.py:1024:test_004()/439 cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -24107,7 +24107,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN conn <<< size: 4808 -location: clients/tests/test-client.py:1016:test_004()/440 +location: clients/tests/test-client.py:1024:test_004()/440 cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -24149,7 +24149,7 @@ VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - Połącz <<< size: 3440 -location: clients/tests/test-client.py:1019:test_004()/441 +location: clients/tests/test-client.py:1027:test_004()/441 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -24181,7 +24181,7 @@ proxy none no -- -- <<< size: 3463 -location: clients/tests/test-client.py:1019:test_004()/442 +location: clients/tests/test-client.py:1027:test_004()/442 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -24213,7 +24213,7 @@ proxy none nie -- -- <<< size: 688 -location: clients/tests/test-client.py:1025:test_004()/443 +location: clients/tests/test-client.py:1033:test_004()/443 cmd: $NMCLI --mode tabular --pretty --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -24228,7 +24228,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 708 -location: clients/tests/test-client.py:1025:test_004()/444 +location: clients/tests/test-client.py:1033:test_004()/444 cmd: $NMCLI --mode tabular --pretty --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -24243,7 +24243,7 @@ vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val <<< size: 1118 -location: clients/tests/test-client.py:1028:test_004()/445 +location: clients/tests/test-client.py:1036:test_004()/445 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -24258,7 +24258,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 activated no <<< size: 1150 -location: clients/tests/test-client.py:1028:test_004()/446 +location: clients/tests/test-client.py:1036:test_004()/446 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -24273,7 +24273,7 @@ GENERAL con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP wlan0 aktywowano n <<< size: 709 -location: clients/tests/test-client.py:1031:test_004()/447 +location: clients/tests/test-client.py:1039:test_004()/447 cmd: $NMCLI --mode tabular --pretty --color yes dev s lang: C returncode: 0 @@ -24292,7 +24292,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 717 -location: clients/tests/test-client.py:1031:test_004()/448 +location: clients/tests/test-client.py:1039:test_004()/448 cmd: $NMCLI --mode tabular --pretty --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -24311,7 +24311,7 @@ DEVICE TYPE STATE CONNECTION <<< size: 1773 -location: clients/tests/test-client.py:1034:test_004()/449 +location: clients/tests/test-client.py:1042:test_004()/449 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev status lang: C returncode: 0 @@ -24330,7 +24330,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 1781 -location: clients/tests/test-client.py:1034:test_004()/450 +location: clients/tests/test-client.py:1042:test_004()/450 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -24349,7 +24349,7 @@ DEVICE TYPE STATE DBUS-PATH CONNEC <<< size: 9903 -location: clients/tests/test-client.py:1037:test_004()/451 +location: clients/tests/test-client.py:1045:test_004()/451 cmd: $NMCLI --mode tabular --pretty --color yes dev show lang: C returncode: 0 @@ -24560,7 +24560,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 10079 -location: clients/tests/test-client.py:1037:test_004()/452 +location: clients/tests/test-client.py:1045:test_004()/452 cmd: $NMCLI --mode tabular --pretty --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -24771,7 +24771,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 22386 -location: clients/tests/test-client.py:1040:test_004()/453 +location: clients/tests/test-client.py:1048:test_004()/453 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show lang: C returncode: 0 @@ -24967,7 +24967,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 22747 -location: clients/tests/test-client.py:1040:test_004()/454 +location: clients/tests/test-client.py:1048:test_004()/454 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -25163,7 +25163,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1726 -location: clients/tests/test-client.py:1043:test_004()/455 +location: clients/tests/test-client.py:1051:test_004()/455 cmd: $NMCLI --mode tabular --pretty --color yes dev show wlan0 lang: C returncode: 0 @@ -25210,7 +25210,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1766 -location: clients/tests/test-client.py:1043:test_004()/456 +location: clients/tests/test-client.py:1051:test_004()/456 cmd: $NMCLI --mode tabular --pretty --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25257,7 +25257,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 4603 -location: clients/tests/test-client.py:1046:test_004()/457 +location: clients/tests/test-client.py:1054:test_004()/457 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -25306,7 +25306,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4711 -location: clients/tests/test-client.py:1046:test_004()/458 +location: clients/tests/test-client.py:1054:test_004()/458 cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25355,7 +25355,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1774 -location: clients/tests/test-client.py:1049:test_004()/459 +location: clients/tests/test-client.py:1057:test_004()/459 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -25378,7 +25378,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1838 -location: clients/tests/test-client.py:1049:test_004()/460 +location: clients/tests/test-client.py:1057:test_004()/460 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25401,7 +25401,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 1774 -location: clients/tests/test-client.py:1052:test_004()/461 +location: clients/tests/test-client.py:1060:test_004()/461 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -25424,7 +25424,7 @@ WIFI-PROPERTIES yes yes yes yes yes yes yes unknown unknown <<< size: 1838 -location: clients/tests/test-client.py:1052:test_004()/462 +location: clients/tests/test-client.py:1060:test_004()/462 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25447,7 +25447,7 @@ WIFI-PROPERTIES tak tak tak tak tak tak tak nieznane nieznane <<< size: 818 -location: clients/tests/test-client.py:1055:test_004()/463 +location: clients/tests/test-client.py:1063:test_004()/463 cmd: $NMCLI --mode tabular --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -25466,7 +25466,7 @@ DEVICE TYPE DBUS-PATH <<< size: 821 -location: clients/tests/test-client.py:1055:test_004()/464 +location: clients/tests/test-client.py:1063:test_004()/464 cmd: $NMCLI --mode tabular --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -25485,7 +25485,7 @@ DEVICE TYPE DBUS-PATH <<< size: 3665 -location: clients/tests/test-client.py:1058:test_004()/465 +location: clients/tests/test-client.py:1066:test_004()/465 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device wifi list lang: C returncode: 0 @@ -25515,7 +25515,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 3903 -location: clients/tests/test-client.py:1058:test_004()/466 +location: clients/tests/test-client.py:1066:test_004()/466 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -25545,7 +25545,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 1468 -location: clients/tests/test-client.py:1060:test_004()/467 +location: clients/tests/test-client.py:1068:test_004()/467 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -25575,7 +25575,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1698 -location: clients/tests/test-client.py:1060:test_004()/468 +location: clients/tests/test-client.py:1068:test_004()/468 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -25605,7 +25605,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 3778 -location: clients/tests/test-client.py:1063:test_004()/469 +location: clients/tests/test-client.py:1071:test_004()/469 cmd: $NMCLI --mode tabular --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -25635,7 +25635,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 4016 -location: clients/tests/test-client.py:1063:test_004()/470 +location: clients/tests/test-client.py:1071:test_004()/470 cmd: $NMCLI --mode tabular --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -25665,7 +25665,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 1320 -location: clients/tests/test-client.py:1065:test_004()/471 +location: clients/tests/test-client.py:1073:test_004()/471 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -25680,7 +25680,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1407 -location: clients/tests/test-client.py:1065:test_004()/472 +location: clients/tests/test-client.py:1073:test_004()/472 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -25695,7 +25695,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 596 -location: clients/tests/test-client.py:1067:test_004()/473 +location: clients/tests/test-client.py:1075:test_004()/473 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -25710,7 +25710,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 681 -location: clients/tests/test-client.py:1067:test_004()/474 +location: clients/tests/test-client.py:1075:test_004()/474 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -25725,7 +25725,7 @@ IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY <<< size: 1433 -location: clients/tests/test-client.py:1070:test_004()/475 +location: clients/tests/test-client.py:1078:test_004()/475 cmd: $NMCLI --mode tabular --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -25740,7 +25740,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN FREQ <<< size: 1520 -location: clients/tests/test-client.py:1070:test_004()/476 +location: clients/tests/test-client.py:1078:test_004()/476 cmd: $NMCLI --mode tabular --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -25755,7 +25755,7 @@ NAME SSID SSID-HEX BSSID MODE CHAN <<< size: 4606 -location: clients/tests/test-client.py:1072:test_004()/477 +location: clients/tests/test-client.py:1080:test_004()/477 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -25804,7 +25804,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4714 -location: clients/tests/test-client.py:1072:test_004()/478 +location: clients/tests/test-client.py:1080:test_004()/478 cmd: $NMCLI --mode tabular --pretty --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25853,7 +25853,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 1739 -location: clients/tests/test-client.py:1074:test_004()/479 +location: clients/tests/test-client.py:1082:test_004()/479 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -25900,7 +25900,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 1779 -location: clients/tests/test-client.py:1074:test_004()/480 +location: clients/tests/test-client.py:1082:test_004()/480 cmd: $NMCLI --mode tabular --pretty --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -25947,7 +25947,7 @@ IP6 -- -- dst = 2001:a::dd5b:aa7b:b4a2:e42/102, nh = ::, mt = 250 <<< size: 4744 -location: clients/tests/test-client.py:1076:test_004()/481 +location: clients/tests/test-client.py:1084:test_004()/481 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -25996,7 +25996,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 4852 -location: clients/tests/test-client.py:1076:test_004()/482 +location: clients/tests/test-client.py:1084:test_004()/482 cmd: $NMCLI --mode tabular --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26045,7 +26045,7 @@ CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{2} UUID-con-x <<< size: 791 -location: clients/tests/test-client.py:1014:test_004()/483 +location: clients/tests/test-client.py:1022:test_004()/483 cmd: $NMCLI --mode tabular --terse con s con-vpn-1 lang: C returncode: 0 @@ -26061,7 +26061,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 801 -location: clients/tests/test-client.py:1014:test_004()/484 +location: clients/tests/test-client.py:1022:test_004()/484 cmd: $NMCLI --mode tabular --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26077,7 +26077,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 791 -location: clients/tests/test-client.py:1016:test_004()/485 +location: clients/tests/test-client.py:1024:test_004()/485 cmd: $NMCLI --mode tabular --terse con s con-vpn-1 lang: C returncode: 0 @@ -26093,7 +26093,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 801 -location: clients/tests/test-client.py:1016:test_004()/486 +location: clients/tests/test-client.py:1024:test_004()/486 cmd: $NMCLI --mode tabular --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26109,7 +26109,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 504 -location: clients/tests/test-client.py:1019:test_004()/487 +location: clients/tests/test-client.py:1027:test_004()/487 cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -26123,7 +26123,7 @@ proxy:none:no:: <<< size: 514 -location: clients/tests/test-client.py:1019:test_004()/488 +location: clients/tests/test-client.py:1027:test_004()/488 cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26137,7 +26137,7 @@ proxy:none:no:: <<< size: 261 -location: clients/tests/test-client.py:1025:test_004()/489 +location: clients/tests/test-client.py:1033:test_004()/489 cmd: $NMCLI --mode tabular --terse -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -26147,7 +26147,7 @@ vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val <<< size: 271 -location: clients/tests/test-client.py:1025:test_004()/490 +location: clients/tests/test-client.py:1033:test_004()/490 cmd: $NMCLI --mode tabular --terse -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26157,7 +26157,7 @@ vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val <<< size: 359 -location: clients/tests/test-client.py:1028:test_004()/491 +location: clients/tests/test-client.py:1036:test_004()/491 cmd: $NMCLI --mode tabular --terse -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -26167,7 +26167,7 @@ GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0:activated:no:no::ye <<< size: 369 -location: clients/tests/test-client.py:1028:test_004()/492 +location: clients/tests/test-client.py:1036:test_004()/492 cmd: $NMCLI --mode tabular --terse -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26177,7 +26177,7 @@ GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0:activated:no:no::ye <<< size: 284 -location: clients/tests/test-client.py:1031:test_004()/493 +location: clients/tests/test-client.py:1039:test_004()/493 cmd: $NMCLI --mode tabular --terse dev s lang: C returncode: 0 @@ -26191,7 +26191,7 @@ wlan0:wifi:unavailable:con-vpn-1 <<< size: 294 -location: clients/tests/test-client.py:1031:test_004()/494 +location: clients/tests/test-client.py:1039:test_004()/494 cmd: $NMCLI --mode tabular --terse dev s lang: pl_PL.UTF-8 returncode: 0 @@ -26205,7 +26205,7 @@ wlan0:wifi:unavailable:con-vpn-1 <<< size: 602 -location: clients/tests/test-client.py:1034:test_004()/495 +location: clients/tests/test-client.py:1042:test_004()/495 cmd: $NMCLI --mode tabular --terse -f all dev status lang: C returncode: 0 @@ -26219,7 +26219,7 @@ wlan0:wifi:unavailable:/org/freedesktop/NetworkManager/Devices/3:con-vpn-1:UUID- <<< size: 612 -location: clients/tests/test-client.py:1034:test_004()/496 +location: clients/tests/test-client.py:1042:test_004()/496 cmd: $NMCLI --mode tabular --terse -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -26233,7 +26233,7 @@ wlan0:wifi:unavailable:/org/freedesktop/NetworkManager/Devices/3:con-vpn-1:UUID- <<< size: 3096 -location: clients/tests/test-client.py:1037:test_004()/497 +location: clients/tests/test-client.py:1045:test_004()/497 cmd: $NMCLI --mode tabular --terse dev show lang: C returncode: 0 @@ -26293,7 +26293,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 3106 -location: clients/tests/test-client.py:1037:test_004()/498 +location: clients/tests/test-client.py:1045:test_004()/498 cmd: $NMCLI --mode tabular --terse dev show lang: pl_PL.UTF-8 returncode: 0 @@ -26353,7 +26353,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 6205 -location: clients/tests/test-client.py:1040:test_004()/499 +location: clients/tests/test-client.py:1048:test_004()/499 cmd: $NMCLI --mode tabular --terse -f all dev show lang: C returncode: 0 @@ -26410,7 +26410,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 6251 -location: clients/tests/test-client.py:1040:test_004()/500 +location: clients/tests/test-client.py:1048:test_004()/500 cmd: $NMCLI --mode tabular --terse -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -26467,7 +26467,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 604 -location: clients/tests/test-client.py:1043:test_004()/501 +location: clients/tests/test-client.py:1051:test_004()/501 cmd: $NMCLI --mode tabular --terse dev show wlan0 lang: C returncode: 0 @@ -26485,7 +26485,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 614 -location: clients/tests/test-client.py:1043:test_004()/502 +location: clients/tests/test-client.py:1051:test_004()/502 cmd: $NMCLI --mode tabular --terse dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26503,7 +26503,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 1341 -location: clients/tests/test-client.py:1046:test_004()/503 +location: clients/tests/test-client.py:1054:test_004()/503 cmd: $NMCLI --mode tabular --terse -f all dev show wlan0 lang: C returncode: 0 @@ -26523,7 +26523,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1378 -location: clients/tests/test-client.py:1046:test_004()/504 +location: clients/tests/test-client.py:1054:test_004()/504 cmd: $NMCLI --mode tabular --terse -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26543,7 +26543,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 541 -location: clients/tests/test-client.py:1049:test_004()/505 +location: clients/tests/test-client.py:1057:test_004()/505 cmd: $NMCLI --mode tabular --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -26555,7 +26555,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 551 -location: clients/tests/test-client.py:1049:test_004()/506 +location: clients/tests/test-client.py:1057:test_004()/506 cmd: $NMCLI --mode tabular --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26567,7 +26567,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 541 -location: clients/tests/test-client.py:1052:test_004()/507 +location: clients/tests/test-client.py:1060:test_004()/507 cmd: $NMCLI --mode tabular --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -26579,7 +26579,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 551 -location: clients/tests/test-client.py:1052:test_004()/508 +location: clients/tests/test-client.py:1060:test_004()/508 cmd: $NMCLI --mode tabular --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26591,7 +26591,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 443 -location: clients/tests/test-client.py:1055:test_004()/509 +location: clients/tests/test-client.py:1063:test_004()/509 cmd: $NMCLI --mode tabular --terse -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -26605,7 +26605,7 @@ wlan0:wifi:/org/freedesktop/NetworkManager/Devices/3 <<< size: 453 -location: clients/tests/test-client.py:1055:test_004()/510 +location: clients/tests/test-client.py:1063:test_004()/510 cmd: $NMCLI --mode tabular --terse -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -26619,7 +26619,7 @@ wlan0:wifi:/org/freedesktop/NetworkManager/Devices/3 <<< size: 1190 -location: clients/tests/test-client.py:1058:test_004()/511 +location: clients/tests/test-client.py:1066:test_004()/511 cmd: $NMCLI --mode tabular --terse -f ALL device wifi list lang: C returncode: 0 @@ -26634,7 +26634,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infra:1:2412 MHz:54 <<< size: 1248 -location: clients/tests/test-client.py:1058:test_004()/512 +location: clients/tests/test-client.py:1066:test_004()/512 cmd: $NMCLI --mode tabular --terse -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -26649,7 +26649,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infrastruktura:1:24 <<< size: 368 -location: clients/tests/test-client.py:1060:test_004()/513 +location: clients/tests/test-client.py:1068:test_004()/513 cmd: $NMCLI --mode tabular --terse -f COMMON device wifi list lang: C returncode: 0 @@ -26664,7 +26664,7 @@ stdout: 198 bytes <<< size: 414 -location: clients/tests/test-client.py:1060:test_004()/514 +location: clients/tests/test-client.py:1068:test_004()/514 cmd: $NMCLI --mode tabular --terse -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -26679,7 +26679,7 @@ stdout: 234 bytes <<< size: 1303 -location: clients/tests/test-client.py:1063:test_004()/515 +location: clients/tests/test-client.py:1071:test_004()/515 cmd: $NMCLI --mode tabular --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -26694,7 +26694,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infra:1:2412 MHz:54 <<< size: 1361 -location: clients/tests/test-client.py:1063:test_004()/516 +location: clients/tests/test-client.py:1071:test_004()/516 cmd: $NMCLI --mode tabular --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -26709,7 +26709,7 @@ AP[3]:wlan0-ap-3:776C616E302D61702D33:9B\:F6\:B7\:EC\:97\:76:Infrastruktura:1:24 <<< size: 446 -location: clients/tests/test-client.py:1065:test_004()/517 +location: clients/tests/test-client.py:1073:test_004()/517 cmd: $NMCLI --mode tabular --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -26719,7 +26719,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infra:1:2412 MHz:54 <<< size: 468 -location: clients/tests/test-client.py:1065:test_004()/518 +location: clients/tests/test-client.py:1073:test_004()/518 cmd: $NMCLI --mode tabular --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -26729,7 +26729,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infrastruktura:1:24 <<< size: 242 -location: clients/tests/test-client.py:1067:test_004()/519 +location: clients/tests/test-client.py:1075:test_004()/519 cmd: $NMCLI --mode tabular --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -26739,7 +26739,7 @@ stdout: 49 bytes <<< size: 261 -location: clients/tests/test-client.py:1067:test_004()/520 +location: clients/tests/test-client.py:1075:test_004()/520 cmd: $NMCLI --mode tabular --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -26749,7 +26749,7 @@ stdout: 58 bytes <<< size: 559 -location: clients/tests/test-client.py:1070:test_004()/521 +location: clients/tests/test-client.py:1078:test_004()/521 cmd: $NMCLI --mode tabular --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -26759,7 +26759,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infra:1:2412 MHz:54 <<< size: 581 -location: clients/tests/test-client.py:1070:test_004()/522 +location: clients/tests/test-client.py:1078:test_004()/522 cmd: $NMCLI --mode tabular --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -26769,7 +26769,7 @@ AP[1]:wlan0-ap-2:776C616E302D61702D32:C0\:E2\:BE\:E8\:EF\:B6:Infrastruktura:1:24 <<< size: 1344 -location: clients/tests/test-client.py:1072:test_004()/523 +location: clients/tests/test-client.py:1080:test_004()/523 cmd: $NMCLI --mode tabular --terse -f ALL device show wlan0 lang: C returncode: 0 @@ -26789,7 +26789,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1381 -location: clients/tests/test-client.py:1072:test_004()/524 +location: clients/tests/test-client.py:1080:test_004()/524 cmd: $NMCLI --mode tabular --terse -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26809,7 +26809,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 617 -location: clients/tests/test-client.py:1074:test_004()/525 +location: clients/tests/test-client.py:1082:test_004()/525 cmd: $NMCLI --mode tabular --terse -f COMMON device show wlan0 lang: C returncode: 0 @@ -26827,7 +26827,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 627 -location: clients/tests/test-client.py:1074:test_004()/526 +location: clients/tests/test-client.py:1082:test_004()/526 cmd: $NMCLI --mode tabular --terse -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26845,7 +26845,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 1482 -location: clients/tests/test-client.py:1076:test_004()/527 +location: clients/tests/test-client.py:1084:test_004()/527 cmd: $NMCLI --mode tabular --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -26865,7 +26865,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1519 -location: clients/tests/test-client.py:1076:test_004()/528 +location: clients/tests/test-client.py:1084:test_004()/528 cmd: $NMCLI --mode tabular --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -26885,7 +26885,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 803 -location: clients/tests/test-client.py:1014:test_004()/529 +location: clients/tests/test-client.py:1022:test_004()/529 cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -26901,7 +26901,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 813 -location: clients/tests/test-client.py:1014:test_004()/530 +location: clients/tests/test-client.py:1022:test_004()/530 cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26917,7 +26917,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 803 -location: clients/tests/test-client.py:1016:test_004()/531 +location: clients/tests/test-client.py:1024:test_004()/531 cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -26933,7 +26933,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 813 -location: clients/tests/test-client.py:1016:test_004()/532 +location: clients/tests/test-client.py:1024:test_004()/532 cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26949,7 +26949,7 @@ VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | k <<< size: 516 -location: clients/tests/test-client.py:1019:test_004()/533 +location: clients/tests/test-client.py:1027:test_004()/533 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -26963,7 +26963,7 @@ proxy:none:no:: <<< size: 526 -location: clients/tests/test-client.py:1019:test_004()/534 +location: clients/tests/test-client.py:1027:test_004()/534 cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26977,7 +26977,7 @@ proxy:none:no:: <<< size: 273 -location: clients/tests/test-client.py:1025:test_004()/535 +location: clients/tests/test-client.py:1033:test_004()/535 cmd: $NMCLI --mode tabular --terse --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -26987,7 +26987,7 @@ vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val <<< size: 283 -location: clients/tests/test-client.py:1025:test_004()/536 +location: clients/tests/test-client.py:1033:test_004()/536 cmd: $NMCLI --mode tabular --terse --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -26997,7 +26997,7 @@ vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val <<< size: 371 -location: clients/tests/test-client.py:1028:test_004()/537 +location: clients/tests/test-client.py:1036:test_004()/537 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -27007,7 +27007,7 @@ GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0:activated:no:no::ye <<< size: 381 -location: clients/tests/test-client.py:1028:test_004()/538 +location: clients/tests/test-client.py:1036:test_004()/538 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -27017,7 +27017,7 @@ GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0:activated:no:no::ye <<< size: 456 -location: clients/tests/test-client.py:1031:test_004()/539 +location: clients/tests/test-client.py:1039:test_004()/539 cmd: $NMCLI --mode tabular --terse --color yes dev s lang: C returncode: 0 @@ -27031,7 +27031,7 @@ stdout: 295 bytes <<< size: 466 -location: clients/tests/test-client.py:1031:test_004()/540 +location: clients/tests/test-client.py:1039:test_004()/540 cmd: $NMCLI --mode tabular --terse --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -27045,7 +27045,7 @@ stdout: 295 bytes <<< size: 894 -location: clients/tests/test-client.py:1034:test_004()/541 +location: clients/tests/test-client.py:1042:test_004()/541 cmd: $NMCLI --mode tabular --terse --color yes -f all dev status lang: C returncode: 0 @@ -27059,7 +27059,7 @@ stdout: 721 bytes <<< size: 904 -location: clients/tests/test-client.py:1034:test_004()/542 +location: clients/tests/test-client.py:1042:test_004()/542 cmd: $NMCLI --mode tabular --terse --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -27073,7 +27073,7 @@ stdout: 721 bytes <<< size: 3108 -location: clients/tests/test-client.py:1037:test_004()/543 +location: clients/tests/test-client.py:1045:test_004()/543 cmd: $NMCLI --mode tabular --terse --color yes dev show lang: C returncode: 0 @@ -27133,7 +27133,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 3118 -location: clients/tests/test-client.py:1037:test_004()/544 +location: clients/tests/test-client.py:1045:test_004()/544 cmd: $NMCLI --mode tabular --terse --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -27193,7 +27193,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 6541 -location: clients/tests/test-client.py:1040:test_004()/545 +location: clients/tests/test-client.py:1048:test_004()/545 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show lang: C returncode: 0 @@ -27250,7 +27250,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 6587 -location: clients/tests/test-client.py:1040:test_004()/546 +location: clients/tests/test-client.py:1048:test_004()/546 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -27307,7 +27307,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 616 -location: clients/tests/test-client.py:1043:test_004()/547 +location: clients/tests/test-client.py:1051:test_004()/547 cmd: $NMCLI --mode tabular --terse --color yes dev show wlan0 lang: C returncode: 0 @@ -27325,7 +27325,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 626 -location: clients/tests/test-client.py:1043:test_004()/548 +location: clients/tests/test-client.py:1051:test_004()/548 cmd: $NMCLI --mode tabular --terse --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27343,7 +27343,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 1596 -location: clients/tests/test-client.py:1046:test_004()/549 +location: clients/tests/test-client.py:1054:test_004()/549 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -27363,7 +27363,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1633 -location: clients/tests/test-client.py:1046:test_004()/550 +location: clients/tests/test-client.py:1054:test_004()/550 cmd: $NMCLI --mode tabular --terse --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27383,7 +27383,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 553 -location: clients/tests/test-client.py:1049:test_004()/551 +location: clients/tests/test-client.py:1057:test_004()/551 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -27395,7 +27395,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 563 -location: clients/tests/test-client.py:1049:test_004()/552 +location: clients/tests/test-client.py:1057:test_004()/552 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27407,7 +27407,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 553 -location: clients/tests/test-client.py:1052:test_004()/553 +location: clients/tests/test-client.py:1060:test_004()/553 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -27419,7 +27419,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 563 -location: clients/tests/test-client.py:1052:test_004()/554 +location: clients/tests/test-client.py:1060:test_004()/554 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27431,7 +27431,7 @@ WIFI-PROPERTIES:yes:yes:yes:yes:yes:yes:yes:unknown:unknown <<< size: 575 -location: clients/tests/test-client.py:1055:test_004()/555 +location: clients/tests/test-client.py:1063:test_004()/555 cmd: $NMCLI --mode tabular --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -27445,7 +27445,7 @@ stdout: 391 bytes <<< size: 585 -location: clients/tests/test-client.py:1055:test_004()/556 +location: clients/tests/test-client.py:1063:test_004()/556 cmd: $NMCLI --mode tabular --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -27459,7 +27459,7 @@ stdout: 391 bytes <<< size: 1814 -location: clients/tests/test-client.py:1058:test_004()/557 +location: clients/tests/test-client.py:1066:test_004()/557 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device wifi list lang: C returncode: 0 @@ -27474,7 +27474,7 @@ stdout: 1634 bytes <<< size: 1872 -location: clients/tests/test-client.py:1058:test_004()/558 +location: clients/tests/test-client.py:1066:test_004()/558 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -27489,7 +27489,7 @@ stdout: 1682 bytes <<< size: 668 -location: clients/tests/test-client.py:1060:test_004()/559 +location: clients/tests/test-client.py:1068:test_004()/559 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -27504,7 +27504,7 @@ stdout: 486 bytes <<< size: 714 -location: clients/tests/test-client.py:1060:test_004()/560 +location: clients/tests/test-client.py:1068:test_004()/560 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -27519,7 +27519,7 @@ stdout: 522 bytes <<< size: 1927 -location: clients/tests/test-client.py:1063:test_004()/561 +location: clients/tests/test-client.py:1071:test_004()/561 cmd: $NMCLI --mode tabular --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -27534,7 +27534,7 @@ stdout: 1634 bytes <<< size: 1985 -location: clients/tests/test-client.py:1063:test_004()/562 +location: clients/tests/test-client.py:1071:test_004()/562 cmd: $NMCLI --mode tabular --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -27549,7 +27549,7 @@ stdout: 1682 bytes <<< size: 611 -location: clients/tests/test-client.py:1065:test_004()/563 +location: clients/tests/test-client.py:1073:test_004()/563 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -27559,7 +27559,7 @@ stdout: 408 bytes <<< size: 633 -location: clients/tests/test-client.py:1065:test_004()/564 +location: clients/tests/test-client.py:1073:test_004()/564 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -27569,7 +27569,7 @@ stdout: 420 bytes <<< size: 327 -location: clients/tests/test-client.py:1067:test_004()/565 +location: clients/tests/test-client.py:1075:test_004()/565 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -27579,7 +27579,7 @@ stdout: 121 bytes <<< size: 346 -location: clients/tests/test-client.py:1067:test_004()/566 +location: clients/tests/test-client.py:1075:test_004()/566 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -27589,7 +27589,7 @@ stdout: 130 bytes <<< size: 724 -location: clients/tests/test-client.py:1070:test_004()/567 +location: clients/tests/test-client.py:1078:test_004()/567 cmd: $NMCLI --mode tabular --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -27599,7 +27599,7 @@ stdout: 408 bytes <<< size: 746 -location: clients/tests/test-client.py:1070:test_004()/568 +location: clients/tests/test-client.py:1078:test_004()/568 cmd: $NMCLI --mode tabular --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -27609,7 +27609,7 @@ stdout: 420 bytes <<< size: 1599 -location: clients/tests/test-client.py:1072:test_004()/569 +location: clients/tests/test-client.py:1080:test_004()/569 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -27629,7 +27629,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1636 -location: clients/tests/test-client.py:1072:test_004()/570 +location: clients/tests/test-client.py:1080:test_004()/570 cmd: $NMCLI --mode tabular --terse --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27649,7 +27649,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 629 -location: clients/tests/test-client.py:1074:test_004()/571 +location: clients/tests/test-client.py:1082:test_004()/571 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -27667,7 +27667,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 639 -location: clients/tests/test-client.py:1074:test_004()/572 +location: clients/tests/test-client.py:1082:test_004()/572 cmd: $NMCLI --mode tabular --terse --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27685,7 +27685,7 @@ IP6:::dst = 2001\:a\:\:dd5b\:aa7b\:b4a2\:e42/102, nh = \:\:, mt = 2504159086::se <<< size: 1737 -location: clients/tests/test-client.py:1076:test_004()/573 +location: clients/tests/test-client.py:1084:test_004()/573 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -27705,7 +27705,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 1774 -location: clients/tests/test-client.py:1076:test_004()/574 +location: clients/tests/test-client.py:1084:test_004()/574 cmd: $NMCLI --mode tabular --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -27725,7 +27725,7 @@ CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{2}:UUID-con-xx1 <<< size: 4621 -location: clients/tests/test-client.py:1014:test_004()/575 +location: clients/tests/test-client.py:1022:test_004()/575 cmd: $NMCLI --mode multiline con s con-vpn-1 lang: C returncode: 0 @@ -27827,7 +27827,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4649 -location: clients/tests/test-client.py:1014:test_004()/576 +location: clients/tests/test-client.py:1022:test_004()/576 cmd: $NMCLI --mode multiline con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -27929,7 +27929,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4621 -location: clients/tests/test-client.py:1016:test_004()/577 +location: clients/tests/test-client.py:1024:test_004()/577 cmd: $NMCLI --mode multiline con s con-vpn-1 lang: C returncode: 0 @@ -28031,7 +28031,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4649 -location: clients/tests/test-client.py:1016:test_004()/578 +location: clients/tests/test-client.py:1024:test_004()/578 cmd: $NMCLI --mode multiline con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -28133,7 +28133,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 3540 -location: clients/tests/test-client.py:1019:test_004()/579 +location: clients/tests/test-client.py:1027:test_004()/579 cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -28215,7 +28215,7 @@ proxy.pac-script: -- <<< size: 3560 -location: clients/tests/test-client.py:1019:test_004()/580 +location: clients/tests/test-client.py:1027:test_004()/580 cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -28297,7 +28297,7 @@ proxy.pac-script: -- <<< size: 494 -location: clients/tests/test-client.py:1025:test_004()/581 +location: clients/tests/test-client.py:1033:test_004()/581 cmd: $NMCLI --mode multiline -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -28312,7 +28312,7 @@ vpn.timeout: 0 <<< size: 505 -location: clients/tests/test-client.py:1025:test_004()/582 +location: clients/tests/test-client.py:1033:test_004()/582 cmd: $NMCLI --mode multiline -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -28327,7 +28327,7 @@ vpn.timeout: 0 <<< size: 831 -location: clients/tests/test-client.py:1028:test_004()/583 +location: clients/tests/test-client.py:1036:test_004()/583 cmd: $NMCLI --mode multiline -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -28348,7 +28348,7 @@ GENERAL.MASTER-PATH: -- <<< size: 844 -location: clients/tests/test-client.py:1028:test_004()/584 +location: clients/tests/test-client.py:1036:test_004()/584 cmd: $NMCLI --mode multiline -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -28369,7 +28369,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1086 -location: clients/tests/test-client.py:1031:test_004()/585 +location: clients/tests/test-client.py:1039:test_004()/585 cmd: $NMCLI --mode multiline dev s lang: C returncode: 0 @@ -28398,7 +28398,7 @@ CONNECTION: con-vpn-1 <<< size: 1101 -location: clients/tests/test-client.py:1031:test_004()/586 +location: clients/tests/test-client.py:1039:test_004()/586 cmd: $NMCLI --mode multiline dev s lang: pl_PL.UTF-8 returncode: 0 @@ -28427,7 +28427,7 @@ CONNECTION: con-vpn-1 <<< size: 2021 -location: clients/tests/test-client.py:1034:test_004()/587 +location: clients/tests/test-client.py:1042:test_004()/587 cmd: $NMCLI --mode multiline -f all dev status lang: C returncode: 0 @@ -28471,7 +28471,7 @@ CON-PATH: /org/freedesktop/NetworkManager/ActiveCo <<< size: 2036 -location: clients/tests/test-client.py:1034:test_004()/588 +location: clients/tests/test-client.py:1042:test_004()/588 cmd: $NMCLI --mode multiline -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -28515,7 +28515,7 @@ CON-PATH: /org/freedesktop/NetworkManager/ActiveCo <<< size: 8065 -location: clients/tests/test-client.py:1037:test_004()/589 +location: clients/tests/test-client.py:1045:test_004()/589 cmd: $NMCLI --mode multiline dev show lang: C returncode: 0 @@ -28661,7 +28661,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 8096 -location: clients/tests/test-client.py:1037:test_004()/590 +location: clients/tests/test-client.py:1045:test_004()/590 cmd: $NMCLI --mode multiline dev show lang: pl_PL.UTF-8 returncode: 0 @@ -28807,7 +28807,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 20168 -location: clients/tests/test-client.py:1040:test_004()/591 +location: clients/tests/test-client.py:1048:test_004()/591 cmd: $NMCLI --mode multiline -f all dev show lang: C returncode: 0 @@ -29186,7 +29186,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 20308 -location: clients/tests/test-client.py:1040:test_004()/592 +location: clients/tests/test-client.py:1048:test_004()/592 cmd: $NMCLI --mode multiline -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -29565,7 +29565,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1516 -location: clients/tests/test-client.py:1043:test_004()/593 +location: clients/tests/test-client.py:1051:test_004()/593 cmd: $NMCLI --mode multiline dev show wlan0 lang: C returncode: 0 @@ -29598,7 +29598,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1527 -location: clients/tests/test-client.py:1043:test_004()/594 +location: clients/tests/test-client.py:1051:test_004()/594 cmd: $NMCLI --mode multiline dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -29631,7 +29631,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4771 -location: clients/tests/test-client.py:1046:test_004()/595 +location: clients/tests/test-client.py:1054:test_004()/595 cmd: $NMCLI --mode multiline -f all dev show wlan0 lang: C returncode: 0 @@ -29729,7 +29729,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4824 -location: clients/tests/test-client.py:1046:test_004()/596 +location: clients/tests/test-client.py:1054:test_004()/596 cmd: $NMCLI --mode multiline -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -29827,7 +29827,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1874 -location: clients/tests/test-client.py:1049:test_004()/597 +location: clients/tests/test-client.py:1057:test_004()/597 cmd: $NMCLI --mode multiline -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -29870,7 +29870,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1896 -location: clients/tests/test-client.py:1049:test_004()/598 +location: clients/tests/test-client.py:1057:test_004()/598 cmd: $NMCLI --mode multiline -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -29913,7 +29913,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1874 -location: clients/tests/test-client.py:1052:test_004()/599 +location: clients/tests/test-client.py:1060:test_004()/599 cmd: $NMCLI --mode multiline -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -29956,7 +29956,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1896 -location: clients/tests/test-client.py:1052:test_004()/600 +location: clients/tests/test-client.py:1060:test_004()/600 cmd: $NMCLI --mode multiline -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -29999,7 +29999,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1037 -location: clients/tests/test-client.py:1055:test_004()/601 +location: clients/tests/test-client.py:1063:test_004()/601 cmd: $NMCLI --mode multiline -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -30023,7 +30023,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devices/ <<< size: 1047 -location: clients/tests/test-client.py:1055:test_004()/602 +location: clients/tests/test-client.py:1063:test_004()/602 cmd: $NMCLI --mode multiline -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -30047,7 +30047,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devices/ <<< size: 3884 -location: clients/tests/test-client.py:1058:test_004()/603 +location: clients/tests/test-client.py:1066:test_004()/603 cmd: $NMCLI --mode multiline -f ALL device wifi list lang: C returncode: 0 @@ -30126,7 +30126,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 3942 -location: clients/tests/test-client.py:1058:test_004()/604 +location: clients/tests/test-client.py:1066:test_004()/604 cmd: $NMCLI --mode multiline -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -30205,7 +30205,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1643 -location: clients/tests/test-client.py:1060:test_004()/605 +location: clients/tests/test-client.py:1068:test_004()/605 cmd: $NMCLI --mode multiline -f COMMON device wifi list lang: C returncode: 0 @@ -30248,7 +30248,7 @@ SECURITY: WPA1 WPA2 <<< size: 1689 -location: clients/tests/test-client.py:1060:test_004()/606 +location: clients/tests/test-client.py:1068:test_004()/606 cmd: $NMCLI --mode multiline -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -30291,7 +30291,7 @@ SECURITY: WPA1 WPA2 <<< size: 3997 -location: clients/tests/test-client.py:1063:test_004()/607 +location: clients/tests/test-client.py:1071:test_004()/607 cmd: $NMCLI --mode multiline -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -30370,7 +30370,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 4055 -location: clients/tests/test-client.py:1063:test_004()/608 +location: clients/tests/test-client.py:1071:test_004()/608 cmd: $NMCLI --mode multiline -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -30449,7 +30449,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1115 -location: clients/tests/test-client.py:1065:test_004()/609 +location: clients/tests/test-client.py:1073:test_004()/609 cmd: $NMCLI --mode multiline -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -30475,7 +30475,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1137 -location: clients/tests/test-client.py:1065:test_004()/610 +location: clients/tests/test-client.py:1073:test_004()/610 cmd: $NMCLI --mode multiline -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -30501,7 +30501,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 557 -location: clients/tests/test-client.py:1067:test_004()/611 +location: clients/tests/test-client.py:1075:test_004()/611 cmd: $NMCLI --mode multiline -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -30518,7 +30518,7 @@ SECURITY: WPA1 WPA2 <<< size: 576 -location: clients/tests/test-client.py:1067:test_004()/612 +location: clients/tests/test-client.py:1075:test_004()/612 cmd: $NMCLI --mode multiline -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -30535,7 +30535,7 @@ SECURITY: WPA1 WPA2 <<< size: 1228 -location: clients/tests/test-client.py:1070:test_004()/613 +location: clients/tests/test-client.py:1078:test_004()/613 cmd: $NMCLI --mode multiline -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -30561,7 +30561,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1250 -location: clients/tests/test-client.py:1070:test_004()/614 +location: clients/tests/test-client.py:1078:test_004()/614 cmd: $NMCLI --mode multiline -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -30587,7 +30587,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 4774 -location: clients/tests/test-client.py:1072:test_004()/615 +location: clients/tests/test-client.py:1080:test_004()/615 cmd: $NMCLI --mode multiline -f ALL device show wlan0 lang: C returncode: 0 @@ -30685,7 +30685,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4827 -location: clients/tests/test-client.py:1072:test_004()/616 +location: clients/tests/test-client.py:1080:test_004()/616 cmd: $NMCLI --mode multiline -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -30783,7 +30783,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1529 -location: clients/tests/test-client.py:1074:test_004()/617 +location: clients/tests/test-client.py:1082:test_004()/617 cmd: $NMCLI --mode multiline -f COMMON device show wlan0 lang: C returncode: 0 @@ -30816,7 +30816,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1540 -location: clients/tests/test-client.py:1074:test_004()/618 +location: clients/tests/test-client.py:1082:test_004()/618 cmd: $NMCLI --mode multiline -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -30849,7 +30849,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4912 -location: clients/tests/test-client.py:1076:test_004()/619 +location: clients/tests/test-client.py:1084:test_004()/619 cmd: $NMCLI --mode multiline -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -30947,7 +30947,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4965 -location: clients/tests/test-client.py:1076:test_004()/620 +location: clients/tests/test-client.py:1084:test_004()/620 cmd: $NMCLI --mode multiline -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -31045,7 +31045,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 4633 -location: clients/tests/test-client.py:1014:test_004()/621 +location: clients/tests/test-client.py:1022:test_004()/621 cmd: $NMCLI --mode multiline --color yes con s con-vpn-1 lang: C returncode: 0 @@ -31147,7 +31147,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4661 -location: clients/tests/test-client.py:1014:test_004()/622 +location: clients/tests/test-client.py:1022:test_004()/622 cmd: $NMCLI --mode multiline --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -31249,7 +31249,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4633 -location: clients/tests/test-client.py:1016:test_004()/623 +location: clients/tests/test-client.py:1024:test_004()/623 cmd: $NMCLI --mode multiline --color yes con s con-vpn-1 lang: C returncode: 0 @@ -31351,7 +31351,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4661 -location: clients/tests/test-client.py:1016:test_004()/624 +location: clients/tests/test-client.py:1024:test_004()/624 cmd: $NMCLI --mode multiline --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -31453,7 +31453,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 3552 -location: clients/tests/test-client.py:1019:test_004()/625 +location: clients/tests/test-client.py:1027:test_004()/625 cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -31535,7 +31535,7 @@ proxy.pac-script: -- <<< size: 3572 -location: clients/tests/test-client.py:1019:test_004()/626 +location: clients/tests/test-client.py:1027:test_004()/626 cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -31617,7 +31617,7 @@ proxy.pac-script: -- <<< size: 506 -location: clients/tests/test-client.py:1025:test_004()/627 +location: clients/tests/test-client.py:1033:test_004()/627 cmd: $NMCLI --mode multiline --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -31632,7 +31632,7 @@ vpn.timeout: 0 <<< size: 517 -location: clients/tests/test-client.py:1025:test_004()/628 +location: clients/tests/test-client.py:1033:test_004()/628 cmd: $NMCLI --mode multiline --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -31647,7 +31647,7 @@ vpn.timeout: 0 <<< size: 843 -location: clients/tests/test-client.py:1028:test_004()/629 +location: clients/tests/test-client.py:1036:test_004()/629 cmd: $NMCLI --mode multiline --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -31668,7 +31668,7 @@ GENERAL.MASTER-PATH: -- <<< size: 856 -location: clients/tests/test-client.py:1028:test_004()/630 +location: clients/tests/test-client.py:1036:test_004()/630 cmd: $NMCLI --mode multiline --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -31689,7 +31689,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1259 -location: clients/tests/test-client.py:1031:test_004()/631 +location: clients/tests/test-client.py:1039:test_004()/631 cmd: $NMCLI --mode multiline --color yes dev s lang: C returncode: 0 @@ -31718,7 +31718,7 @@ CONNECTION: con-vpn-1 <<< size: 1274 -location: clients/tests/test-client.py:1031:test_004()/632 +location: clients/tests/test-client.py:1039:test_004()/632 cmd: $NMCLI --mode multiline --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -31747,7 +31747,7 @@ CONNECTION: con-vpn-1 <<< size: 2313 -location: clients/tests/test-client.py:1034:test_004()/633 +location: clients/tests/test-client.py:1042:test_004()/633 cmd: $NMCLI --mode multiline --color yes -f all dev status lang: C returncode: 0 @@ -31791,7 +31791,7 @@ CON-PATH: /org/freedesktop/NetworkManager/Acti <<< size: 2328 -location: clients/tests/test-client.py:1034:test_004()/634 +location: clients/tests/test-client.py:1042:test_004()/634 cmd: $NMCLI --mode multiline --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -31835,7 +31835,7 @@ CON-PATH: /org/freedesktop/NetworkManager/Acti <<< size: 8077 -location: clients/tests/test-client.py:1037:test_004()/635 +location: clients/tests/test-client.py:1045:test_004()/635 cmd: $NMCLI --mode multiline --color yes dev show lang: C returncode: 0 @@ -31981,7 +31981,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 8108 -location: clients/tests/test-client.py:1037:test_004()/636 +location: clients/tests/test-client.py:1045:test_004()/636 cmd: $NMCLI --mode multiline --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -32127,7 +32127,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 20468 -location: clients/tests/test-client.py:1040:test_004()/637 +location: clients/tests/test-client.py:1048:test_004()/637 cmd: $NMCLI --mode multiline --color yes -f all dev show lang: C returncode: 0 @@ -32506,7 +32506,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 20608 -location: clients/tests/test-client.py:1040:test_004()/638 +location: clients/tests/test-client.py:1048:test_004()/638 cmd: $NMCLI --mode multiline --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -32885,7 +32885,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1528 -location: clients/tests/test-client.py:1043:test_004()/639 +location: clients/tests/test-client.py:1051:test_004()/639 cmd: $NMCLI --mode multiline --color yes dev show wlan0 lang: C returncode: 0 @@ -32918,7 +32918,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1539 -location: clients/tests/test-client.py:1043:test_004()/640 +location: clients/tests/test-client.py:1051:test_004()/640 cmd: $NMCLI --mode multiline --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -32951,7 +32951,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 4999 -location: clients/tests/test-client.py:1046:test_004()/641 +location: clients/tests/test-client.py:1054:test_004()/641 cmd: $NMCLI --mode multiline --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -33049,7 +33049,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5052 -location: clients/tests/test-client.py:1046:test_004()/642 +location: clients/tests/test-client.py:1054:test_004()/642 cmd: $NMCLI --mode multiline --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -33147,7 +33147,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1886 -location: clients/tests/test-client.py:1049:test_004()/643 +location: clients/tests/test-client.py:1057:test_004()/643 cmd: $NMCLI --mode multiline --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -33190,7 +33190,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1908 -location: clients/tests/test-client.py:1049:test_004()/644 +location: clients/tests/test-client.py:1057:test_004()/644 cmd: $NMCLI --mode multiline --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -33233,7 +33233,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1886 -location: clients/tests/test-client.py:1052:test_004()/645 +location: clients/tests/test-client.py:1060:test_004()/645 cmd: $NMCLI --mode multiline --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -33276,7 +33276,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 1908 -location: clients/tests/test-client.py:1052:test_004()/646 +location: clients/tests/test-client.py:1060:test_004()/646 cmd: $NMCLI --mode multiline --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -33319,7 +33319,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1169 -location: clients/tests/test-client.py:1055:test_004()/647 +location: clients/tests/test-client.py:1063:test_004()/647 cmd: $NMCLI --mode multiline --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -33343,7 +33343,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devi <<< size: 1179 -location: clients/tests/test-client.py:1055:test_004()/648 +location: clients/tests/test-client.py:1063:test_004()/648 cmd: $NMCLI --mode multiline --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -33367,7 +33367,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devi <<< size: 4508 -location: clients/tests/test-client.py:1058:test_004()/649 +location: clients/tests/test-client.py:1066:test_004()/649 cmd: $NMCLI --mode multiline --color yes -f ALL device wifi list lang: C returncode: 0 @@ -33446,7 +33446,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 4566 -location: clients/tests/test-client.py:1058:test_004()/650 +location: clients/tests/test-client.py:1066:test_004()/650 cmd: $NMCLI --mode multiline --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -33525,7 +33525,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1943 -location: clients/tests/test-client.py:1060:test_004()/651 +location: clients/tests/test-client.py:1068:test_004()/651 cmd: $NMCLI --mode multiline --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -33568,7 +33568,7 @@ SECURITY: WPA1 WPA2 <<< size: 1989 -location: clients/tests/test-client.py:1060:test_004()/652 +location: clients/tests/test-client.py:1068:test_004()/652 cmd: $NMCLI --mode multiline --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -33611,7 +33611,7 @@ SECURITY: WPA1 WPA2 <<< size: 4621 -location: clients/tests/test-client.py:1063:test_004()/653 +location: clients/tests/test-client.py:1071:test_004()/653 cmd: $NMCLI --mode multiline --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -33690,7 +33690,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 4679 -location: clients/tests/test-client.py:1063:test_004()/654 +location: clients/tests/test-client.py:1071:test_004()/654 cmd: $NMCLI --mode multiline --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -33769,7 +33769,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1281 -location: clients/tests/test-client.py:1065:test_004()/655 +location: clients/tests/test-client.py:1073:test_004()/655 cmd: $NMCLI --mode multiline --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -33795,7 +33795,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1303 -location: clients/tests/test-client.py:1065:test_004()/656 +location: clients/tests/test-client.py:1073:test_004()/656 cmd: $NMCLI --mode multiline --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -33821,7 +33821,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 641 -location: clients/tests/test-client.py:1067:test_004()/657 +location: clients/tests/test-client.py:1075:test_004()/657 cmd: $NMCLI --mode multiline --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -33838,7 +33838,7 @@ SECURITY: WPA1 WPA2 <<< size: 660 -location: clients/tests/test-client.py:1067:test_004()/658 +location: clients/tests/test-client.py:1075:test_004()/658 cmd: $NMCLI --mode multiline --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -33855,7 +33855,7 @@ SECURITY: WPA1 WPA2 <<< size: 1394 -location: clients/tests/test-client.py:1070:test_004()/659 +location: clients/tests/test-client.py:1078:test_004()/659 cmd: $NMCLI --mode multiline --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -33881,7 +33881,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1416 -location: clients/tests/test-client.py:1070:test_004()/660 +location: clients/tests/test-client.py:1078:test_004()/660 cmd: $NMCLI --mode multiline --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -33907,7 +33907,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 5002 -location: clients/tests/test-client.py:1072:test_004()/661 +location: clients/tests/test-client.py:1080:test_004()/661 cmd: $NMCLI --mode multiline --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -34005,7 +34005,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5055 -location: clients/tests/test-client.py:1072:test_004()/662 +location: clients/tests/test-client.py:1080:test_004()/662 cmd: $NMCLI --mode multiline --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -34103,7 +34103,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 1541 -location: clients/tests/test-client.py:1074:test_004()/663 +location: clients/tests/test-client.py:1082:test_004()/663 cmd: $NMCLI --mode multiline --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -34136,7 +34136,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 1552 -location: clients/tests/test-client.py:1074:test_004()/664 +location: clients/tests/test-client.py:1082:test_004()/664 cmd: $NMCLI --mode multiline --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -34169,7 +34169,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 5140 -location: clients/tests/test-client.py:1076:test_004()/665 +location: clients/tests/test-client.py:1084:test_004()/665 cmd: $NMCLI --mode multiline --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -34267,7 +34267,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5193 -location: clients/tests/test-client.py:1076:test_004()/666 +location: clients/tests/test-client.py:1084:test_004()/666 cmd: $NMCLI --mode multiline --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -34365,7 +34365,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5642 -location: clients/tests/test-client.py:1014:test_004()/667 +location: clients/tests/test-client.py:1022:test_004()/667 cmd: $NMCLI --mode multiline --pretty con s con-vpn-1 lang: C returncode: 0 @@ -34480,7 +34480,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5682 -location: clients/tests/test-client.py:1014:test_004()/668 +location: clients/tests/test-client.py:1022:test_004()/668 cmd: $NMCLI --mode multiline --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -34595,7 +34595,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5642 -location: clients/tests/test-client.py:1016:test_004()/669 +location: clients/tests/test-client.py:1024:test_004()/669 cmd: $NMCLI --mode multiline --pretty con s con-vpn-1 lang: C returncode: 0 @@ -34710,7 +34710,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5682 -location: clients/tests/test-client.py:1016:test_004()/670 +location: clients/tests/test-client.py:1024:test_004()/670 cmd: $NMCLI --mode multiline --pretty con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -34825,7 +34825,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4168 -location: clients/tests/test-client.py:1019:test_004()/671 +location: clients/tests/test-client.py:1027:test_004()/671 cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -34915,7 +34915,7 @@ proxy.pac-script: -- <<< size: 4193 -location: clients/tests/test-client.py:1019:test_004()/672 +location: clients/tests/test-client.py:1027:test_004()/672 cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -35005,7 +35005,7 @@ proxy.pac-script: -- <<< size: 802 -location: clients/tests/test-client.py:1025:test_004()/673 +location: clients/tests/test-client.py:1033:test_004()/673 cmd: $NMCLI --mode multiline --pretty -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -35024,7 +35024,7 @@ vpn.timeout: 0 <<< size: 818 -location: clients/tests/test-client.py:1025:test_004()/674 +location: clients/tests/test-client.py:1033:test_004()/674 cmd: $NMCLI --mode multiline --pretty -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -35043,7 +35043,7 @@ vpn.timeout: 0 <<< size: 1153 -location: clients/tests/test-client.py:1028:test_004()/675 +location: clients/tests/test-client.py:1036:test_004()/675 cmd: $NMCLI --mode multiline --pretty -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -35068,7 +35068,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1173 -location: clients/tests/test-client.py:1028:test_004()/676 +location: clients/tests/test-client.py:1036:test_004()/676 cmd: $NMCLI --mode multiline --pretty -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -35093,7 +35093,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1705 -location: clients/tests/test-client.py:1031:test_004()/677 +location: clients/tests/test-client.py:1039:test_004()/677 cmd: $NMCLI --mode multiline --pretty dev s lang: C returncode: 0 @@ -35130,7 +35130,7 @@ CONNECTION: con-vpn-1 <<< size: 1720 -location: clients/tests/test-client.py:1031:test_004()/678 +location: clients/tests/test-client.py:1039:test_004()/678 cmd: $NMCLI --mode multiline --pretty dev s lang: pl_PL.UTF-8 returncode: 0 @@ -35167,7 +35167,7 @@ CONNECTION: con-vpn-1 <<< size: 2639 -location: clients/tests/test-client.py:1034:test_004()/679 +location: clients/tests/test-client.py:1042:test_004()/679 cmd: $NMCLI --mode multiline --pretty -f all dev status lang: C returncode: 0 @@ -35219,7 +35219,7 @@ CON-PATH: /org/freedesktop/NetworkManager/ActiveCo <<< size: 2654 -location: clients/tests/test-client.py:1034:test_004()/680 +location: clients/tests/test-client.py:1042:test_004()/680 cmd: $NMCLI --mode multiline --pretty -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -35271,7 +35271,7 @@ CON-PATH: /org/freedesktop/NetworkManager/ActiveCo <<< size: 12890 -location: clients/tests/test-client.py:1037:test_004()/681 +location: clients/tests/test-client.py:1045:test_004()/681 cmd: $NMCLI --mode multiline --pretty dev show lang: C returncode: 0 @@ -35479,7 +35479,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 12954 -location: clients/tests/test-client.py:1037:test_004()/682 +location: clients/tests/test-client.py:1045:test_004()/682 cmd: $NMCLI --mode multiline --pretty dev show lang: pl_PL.UTF-8 returncode: 0 @@ -35687,7 +35687,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 24752 -location: clients/tests/test-client.py:1040:test_004()/683 +location: clients/tests/test-client.py:1048:test_004()/683 cmd: $NMCLI --mode multiline --pretty -f all dev show lang: C returncode: 0 @@ -36125,7 +36125,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 24925 -location: clients/tests/test-client.py:1040:test_004()/684 +location: clients/tests/test-client.py:1048:test_004()/684 cmd: $NMCLI --mode multiline --pretty -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -36563,7 +36563,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2456 -location: clients/tests/test-client.py:1043:test_004()/685 +location: clients/tests/test-client.py:1051:test_004()/685 cmd: $NMCLI --mode multiline --pretty dev show wlan0 lang: C returncode: 0 @@ -36608,7 +36608,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2474 -location: clients/tests/test-client.py:1043:test_004()/686 +location: clients/tests/test-client.py:1051:test_004()/686 cmd: $NMCLI --mode multiline --pretty dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -36653,7 +36653,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 5871 -location: clients/tests/test-client.py:1046:test_004()/687 +location: clients/tests/test-client.py:1054:test_004()/687 cmd: $NMCLI --mode multiline --pretty -f all dev show wlan0 lang: C returncode: 0 @@ -36765,7 +36765,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5931 -location: clients/tests/test-client.py:1046:test_004()/688 +location: clients/tests/test-client.py:1054:test_004()/688 cmd: $NMCLI --mode multiline --pretty -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -36877,7 +36877,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2334 -location: clients/tests/test-client.py:1049:test_004()/689 +location: clients/tests/test-client.py:1057:test_004()/689 cmd: $NMCLI --mode multiline --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -36926,7 +36926,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2363 -location: clients/tests/test-client.py:1049:test_004()/690 +location: clients/tests/test-client.py:1057:test_004()/690 cmd: $NMCLI --mode multiline --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -36975,7 +36975,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 2334 -location: clients/tests/test-client.py:1052:test_004()/691 +location: clients/tests/test-client.py:1060:test_004()/691 cmd: $NMCLI --mode multiline --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -37024,7 +37024,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2363 -location: clients/tests/test-client.py:1052:test_004()/692 +location: clients/tests/test-client.py:1060:test_004()/692 cmd: $NMCLI --mode multiline --pretty -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -37073,7 +37073,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1656 -location: clients/tests/test-client.py:1055:test_004()/693 +location: clients/tests/test-client.py:1063:test_004()/693 cmd: $NMCLI --mode multiline --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -37105,7 +37105,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devices/ <<< size: 1666 -location: clients/tests/test-client.py:1055:test_004()/694 +location: clients/tests/test-client.py:1063:test_004()/694 cmd: $NMCLI --mode multiline --pretty -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -37137,7 +37137,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devices/ <<< size: 4849 -location: clients/tests/test-client.py:1058:test_004()/695 +location: clients/tests/test-client.py:1066:test_004()/695 cmd: $NMCLI --mode multiline --pretty -f ALL device wifi list lang: C returncode: 0 @@ -37229,7 +37229,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 4925 -location: clients/tests/test-client.py:1058:test_004()/696 +location: clients/tests/test-client.py:1066:test_004()/696 cmd: $NMCLI --mode multiline --pretty -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -37321,7 +37321,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 2608 -location: clients/tests/test-client.py:1060:test_004()/697 +location: clients/tests/test-client.py:1068:test_004()/697 cmd: $NMCLI --mode multiline --pretty -f COMMON device wifi list lang: C returncode: 0 @@ -37377,7 +37377,7 @@ SECURITY: WPA1 WPA2 <<< size: 2672 -location: clients/tests/test-client.py:1060:test_004()/698 +location: clients/tests/test-client.py:1068:test_004()/698 cmd: $NMCLI --mode multiline --pretty -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -37433,7 +37433,7 @@ SECURITY: WPA1 WPA2 <<< size: 4962 -location: clients/tests/test-client.py:1063:test_004()/699 +location: clients/tests/test-client.py:1071:test_004()/699 cmd: $NMCLI --mode multiline --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -37525,7 +37525,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 5038 -location: clients/tests/test-client.py:1063:test_004()/700 +location: clients/tests/test-client.py:1071:test_004()/700 cmd: $NMCLI --mode multiline --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -37617,7 +37617,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1417 -location: clients/tests/test-client.py:1065:test_004()/701 +location: clients/tests/test-client.py:1073:test_004()/701 cmd: $NMCLI --mode multiline --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -37647,7 +37647,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1445 -location: clients/tests/test-client.py:1065:test_004()/702 +location: clients/tests/test-client.py:1073:test_004()/702 cmd: $NMCLI --mode multiline --pretty -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -37677,7 +37677,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 858 -location: clients/tests/test-client.py:1067:test_004()/703 +location: clients/tests/test-client.py:1075:test_004()/703 cmd: $NMCLI --mode multiline --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -37698,7 +37698,7 @@ SECURITY: WPA1 WPA2 <<< size: 883 -location: clients/tests/test-client.py:1067:test_004()/704 +location: clients/tests/test-client.py:1075:test_004()/704 cmd: $NMCLI --mode multiline --pretty -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -37719,7 +37719,7 @@ SECURITY: WPA1 WPA2 <<< size: 1530 -location: clients/tests/test-client.py:1070:test_004()/705 +location: clients/tests/test-client.py:1078:test_004()/705 cmd: $NMCLI --mode multiline --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -37749,7 +37749,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 1558 -location: clients/tests/test-client.py:1070:test_004()/706 +location: clients/tests/test-client.py:1078:test_004()/706 cmd: $NMCLI --mode multiline --pretty -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -37779,7 +37779,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/AccessPo <<< size: 5874 -location: clients/tests/test-client.py:1072:test_004()/707 +location: clients/tests/test-client.py:1080:test_004()/707 cmd: $NMCLI --mode multiline --pretty -f ALL device show wlan0 lang: C returncode: 0 @@ -37891,7 +37891,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5934 -location: clients/tests/test-client.py:1072:test_004()/708 +location: clients/tests/test-client.py:1080:test_004()/708 cmd: $NMCLI --mode multiline --pretty -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -38003,7 +38003,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2469 -location: clients/tests/test-client.py:1074:test_004()/709 +location: clients/tests/test-client.py:1082:test_004()/709 cmd: $NMCLI --mode multiline --pretty -f COMMON device show wlan0 lang: C returncode: 0 @@ -38048,7 +38048,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2487 -location: clients/tests/test-client.py:1074:test_004()/710 +location: clients/tests/test-client.py:1082:test_004()/710 cmd: $NMCLI --mode multiline --pretty -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -38093,7 +38093,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 6012 -location: clients/tests/test-client.py:1076:test_004()/711 +location: clients/tests/test-client.py:1084:test_004()/711 cmd: $NMCLI --mode multiline --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -38205,7 +38205,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6072 -location: clients/tests/test-client.py:1076:test_004()/712 +location: clients/tests/test-client.py:1084:test_004()/712 cmd: $NMCLI --mode multiline --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -38317,7 +38317,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 5654 -location: clients/tests/test-client.py:1014:test_004()/713 +location: clients/tests/test-client.py:1022:test_004()/713 cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -38432,7 +38432,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5694 -location: clients/tests/test-client.py:1014:test_004()/714 +location: clients/tests/test-client.py:1022:test_004()/714 cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -38547,7 +38547,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5654 -location: clients/tests/test-client.py:1016:test_004()/715 +location: clients/tests/test-client.py:1024:test_004()/715 cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1 lang: C returncode: 0 @@ -38662,7 +38662,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 5694 -location: clients/tests/test-client.py:1016:test_004()/716 +location: clients/tests/test-client.py:1024:test_004()/716 cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -38777,7 +38777,7 @@ VPN.CFG[3]: key3 = val3 <<< size: 4180 -location: clients/tests/test-client.py:1019:test_004()/717 +location: clients/tests/test-client.py:1027:test_004()/717 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -38867,7 +38867,7 @@ proxy.pac-script: -- <<< size: 4205 -location: clients/tests/test-client.py:1019:test_004()/718 +location: clients/tests/test-client.py:1027:test_004()/718 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -38957,7 +38957,7 @@ proxy.pac-script: -- <<< size: 814 -location: clients/tests/test-client.py:1025:test_004()/719 +location: clients/tests/test-client.py:1033:test_004()/719 cmd: $NMCLI --mode multiline --pretty --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -38976,7 +38976,7 @@ vpn.timeout: 0 <<< size: 830 -location: clients/tests/test-client.py:1025:test_004()/720 +location: clients/tests/test-client.py:1033:test_004()/720 cmd: $NMCLI --mode multiline --pretty --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -38995,7 +38995,7 @@ vpn.timeout: 0 <<< size: 1165 -location: clients/tests/test-client.py:1028:test_004()/721 +location: clients/tests/test-client.py:1036:test_004()/721 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -39020,7 +39020,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1185 -location: clients/tests/test-client.py:1028:test_004()/722 +location: clients/tests/test-client.py:1036:test_004()/722 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -39045,7 +39045,7 @@ GENERAL.MASTER-PATH: -- <<< size: 1877 -location: clients/tests/test-client.py:1031:test_004()/723 +location: clients/tests/test-client.py:1039:test_004()/723 cmd: $NMCLI --mode multiline --pretty --color yes dev s lang: C returncode: 0 @@ -39082,7 +39082,7 @@ CONNECTION: con-vpn-1 <<< size: 1892 -location: clients/tests/test-client.py:1031:test_004()/724 +location: clients/tests/test-client.py:1039:test_004()/724 cmd: $NMCLI --mode multiline --pretty --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -39119,7 +39119,7 @@ CONNECTION: con-vpn-1 <<< size: 2931 -location: clients/tests/test-client.py:1034:test_004()/725 +location: clients/tests/test-client.py:1042:test_004()/725 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev status lang: C returncode: 0 @@ -39171,7 +39171,7 @@ CON-PATH: /org/freedesktop/NetworkManager/Acti <<< size: 2946 -location: clients/tests/test-client.py:1034:test_004()/726 +location: clients/tests/test-client.py:1042:test_004()/726 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -39223,7 +39223,7 @@ CON-PATH: /org/freedesktop/NetworkManager/Acti <<< size: 12902 -location: clients/tests/test-client.py:1037:test_004()/727 +location: clients/tests/test-client.py:1045:test_004()/727 cmd: $NMCLI --mode multiline --pretty --color yes dev show lang: C returncode: 0 @@ -39431,7 +39431,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 12966 -location: clients/tests/test-client.py:1037:test_004()/728 +location: clients/tests/test-client.py:1045:test_004()/728 cmd: $NMCLI --mode multiline --pretty --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -39639,7 +39639,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 25052 -location: clients/tests/test-client.py:1040:test_004()/729 +location: clients/tests/test-client.py:1048:test_004()/729 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show lang: C returncode: 0 @@ -40077,7 +40077,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 25225 -location: clients/tests/test-client.py:1040:test_004()/730 +location: clients/tests/test-client.py:1048:test_004()/730 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -40515,7 +40515,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2468 -location: clients/tests/test-client.py:1043:test_004()/731 +location: clients/tests/test-client.py:1051:test_004()/731 cmd: $NMCLI --mode multiline --pretty --color yes dev show wlan0 lang: C returncode: 0 @@ -40560,7 +40560,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2486 -location: clients/tests/test-client.py:1043:test_004()/732 +location: clients/tests/test-client.py:1051:test_004()/732 cmd: $NMCLI --mode multiline --pretty --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -40605,7 +40605,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 6099 -location: clients/tests/test-client.py:1046:test_004()/733 +location: clients/tests/test-client.py:1054:test_004()/733 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -40717,7 +40717,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6159 -location: clients/tests/test-client.py:1046:test_004()/734 +location: clients/tests/test-client.py:1054:test_004()/734 cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -40829,7 +40829,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2346 -location: clients/tests/test-client.py:1049:test_004()/735 +location: clients/tests/test-client.py:1057:test_004()/735 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -40878,7 +40878,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2375 -location: clients/tests/test-client.py:1049:test_004()/736 +location: clients/tests/test-client.py:1057:test_004()/736 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -40927,7 +40927,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 2346 -location: clients/tests/test-client.py:1052:test_004()/737 +location: clients/tests/test-client.py:1060:test_004()/737 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -40976,7 +40976,7 @@ WIFI-PROPERTIES.5GHZ: unknown <<< size: 2375 -location: clients/tests/test-client.py:1052:test_004()/738 +location: clients/tests/test-client.py:1060:test_004()/738 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -41025,7 +41025,7 @@ WIFI-PROPERTIES.5GHZ: nieznane <<< size: 1788 -location: clients/tests/test-client.py:1055:test_004()/739 +location: clients/tests/test-client.py:1063:test_004()/739 cmd: $NMCLI --mode multiline --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -41057,7 +41057,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devi <<< size: 1798 -location: clients/tests/test-client.py:1055:test_004()/740 +location: clients/tests/test-client.py:1063:test_004()/740 cmd: $NMCLI --mode multiline --pretty --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -41089,7 +41089,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Devi <<< size: 5473 -location: clients/tests/test-client.py:1058:test_004()/741 +location: clients/tests/test-client.py:1066:test_004()/741 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device wifi list lang: C returncode: 0 @@ -41181,7 +41181,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 5549 -location: clients/tests/test-client.py:1058:test_004()/742 +location: clients/tests/test-client.py:1066:test_004()/742 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -41273,7 +41273,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 2908 -location: clients/tests/test-client.py:1060:test_004()/743 +location: clients/tests/test-client.py:1068:test_004()/743 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -41329,7 +41329,7 @@ SECURITY: WPA1 WPA2 <<< size: 2972 -location: clients/tests/test-client.py:1060:test_004()/744 +location: clients/tests/test-client.py:1068:test_004()/744 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -41385,7 +41385,7 @@ SECURITY: WPA1 WPA2 <<< size: 5586 -location: clients/tests/test-client.py:1063:test_004()/745 +location: clients/tests/test-client.py:1071:test_004()/745 cmd: $NMCLI --mode multiline --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -41477,7 +41477,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 5662 -location: clients/tests/test-client.py:1063:test_004()/746 +location: clients/tests/test-client.py:1071:test_004()/746 cmd: $NMCLI --mode multiline --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -41569,7 +41569,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1582 -location: clients/tests/test-client.py:1065:test_004()/747 +location: clients/tests/test-client.py:1073:test_004()/747 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -41599,7 +41599,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1610 -location: clients/tests/test-client.py:1065:test_004()/748 +location: clients/tests/test-client.py:1073:test_004()/748 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -41629,7 +41629,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 942 -location: clients/tests/test-client.py:1067:test_004()/749 +location: clients/tests/test-client.py:1075:test_004()/749 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -41650,7 +41650,7 @@ SECURITY: WPA1 WPA2 <<< size: 967 -location: clients/tests/test-client.py:1067:test_004()/750 +location: clients/tests/test-client.py:1075:test_004()/750 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -41671,7 +41671,7 @@ SECURITY: WPA1 WPA2 <<< size: 1695 -location: clients/tests/test-client.py:1070:test_004()/751 +location: clients/tests/test-client.py:1078:test_004()/751 cmd: $NMCLI --mode multiline --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -41701,7 +41701,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 1723 -location: clients/tests/test-client.py:1070:test_004()/752 +location: clients/tests/test-client.py:1078:test_004()/752 cmd: $NMCLI --mode multiline --pretty --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -41731,7 +41731,7 @@ DBUS-PATH: /org/freedesktop/NetworkManager/Acc <<< size: 6102 -location: clients/tests/test-client.py:1072:test_004()/753 +location: clients/tests/test-client.py:1080:test_004()/753 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -41843,7 +41843,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6162 -location: clients/tests/test-client.py:1072:test_004()/754 +location: clients/tests/test-client.py:1080:test_004()/754 cmd: $NMCLI --mode multiline --pretty --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -41955,7 +41955,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2481 -location: clients/tests/test-client.py:1074:test_004()/755 +location: clients/tests/test-client.py:1082:test_004()/755 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -42000,7 +42000,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 2499 -location: clients/tests/test-client.py:1074:test_004()/756 +location: clients/tests/test-client.py:1082:test_004()/756 cmd: $NMCLI --mode multiline --pretty --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -42045,7 +42045,7 @@ IP6.DOMAIN[6]: sear6.foo4.bar <<< size: 6240 -location: clients/tests/test-client.py:1076:test_004()/757 +location: clients/tests/test-client.py:1084:test_004()/757 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -42157,7 +42157,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 6300 -location: clients/tests/test-client.py:1076:test_004()/758 +location: clients/tests/test-client.py:1084:test_004()/758 cmd: $NMCLI --mode multiline --pretty --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -42269,7 +42269,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | c <<< size: 2340 -location: clients/tests/test-client.py:1014:test_004()/759 +location: clients/tests/test-client.py:1022:test_004()/759 cmd: $NMCLI --mode multiline --terse con s con-vpn-1 lang: C returncode: 0 @@ -42371,7 +42371,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2350 -location: clients/tests/test-client.py:1014:test_004()/760 +location: clients/tests/test-client.py:1022:test_004()/760 cmd: $NMCLI --mode multiline --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -42473,7 +42473,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2340 -location: clients/tests/test-client.py:1016:test_004()/761 +location: clients/tests/test-client.py:1024:test_004()/761 cmd: $NMCLI --mode multiline --terse con s con-vpn-1 lang: C returncode: 0 @@ -42575,7 +42575,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2350 -location: clients/tests/test-client.py:1016:test_004()/762 +location: clients/tests/test-client.py:1024:test_004()/762 cmd: $NMCLI --mode multiline --terse con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -42677,7 +42677,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 1788 -location: clients/tests/test-client.py:1019:test_004()/763 +location: clients/tests/test-client.py:1027:test_004()/763 cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -42759,7 +42759,7 @@ proxy.pac-script: <<< size: 1798 -location: clients/tests/test-client.py:1019:test_004()/764 +location: clients/tests/test-client.py:1027:test_004()/764 cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -42841,7 +42841,7 @@ proxy.pac-script: <<< size: 339 -location: clients/tests/test-client.py:1025:test_004()/765 +location: clients/tests/test-client.py:1033:test_004()/765 cmd: $NMCLI --mode multiline --terse -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -42856,7 +42856,7 @@ vpn.timeout:0 <<< size: 349 -location: clients/tests/test-client.py:1025:test_004()/766 +location: clients/tests/test-client.py:1033:test_004()/766 cmd: $NMCLI --mode multiline --terse -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -42871,7 +42871,7 @@ vpn.timeout:0 <<< size: 542 -location: clients/tests/test-client.py:1028:test_004()/767 +location: clients/tests/test-client.py:1036:test_004()/767 cmd: $NMCLI --mode multiline --terse -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -42892,7 +42892,7 @@ GENERAL.MASTER-PATH: <<< size: 552 -location: clients/tests/test-client.py:1028:test_004()/768 +location: clients/tests/test-client.py:1036:test_004()/768 cmd: $NMCLI --mode multiline --terse -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -42913,7 +42913,7 @@ GENERAL.MASTER-PATH: <<< size: 431 -location: clients/tests/test-client.py:1031:test_004()/769 +location: clients/tests/test-client.py:1039:test_004()/769 cmd: $NMCLI --mode multiline --terse dev s lang: C returncode: 0 @@ -42942,7 +42942,7 @@ CONNECTION:con-vpn-1 <<< size: 441 -location: clients/tests/test-client.py:1031:test_004()/770 +location: clients/tests/test-client.py:1039:test_004()/770 cmd: $NMCLI --mode multiline --terse dev s lang: pl_PL.UTF-8 returncode: 0 @@ -42971,7 +42971,7 @@ CONNECTION:con-vpn-1 <<< size: 889 -location: clients/tests/test-client.py:1034:test_004()/771 +location: clients/tests/test-client.py:1042:test_004()/771 cmd: $NMCLI --mode multiline --terse -f all dev status lang: C returncode: 0 @@ -43015,7 +43015,7 @@ CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 <<< size: 899 -location: clients/tests/test-client.py:1034:test_004()/772 +location: clients/tests/test-client.py:1042:test_004()/772 cmd: $NMCLI --mode multiline --terse -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -43059,7 +43059,7 @@ CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 <<< size: 4557 -location: clients/tests/test-client.py:1037:test_004()/773 +location: clients/tests/test-client.py:1045:test_004()/773 cmd: $NMCLI --mode multiline --terse dev show lang: C returncode: 0 @@ -43205,7 +43205,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 4567 -location: clients/tests/test-client.py:1037:test_004()/774 +location: clients/tests/test-client.py:1045:test_004()/774 cmd: $NMCLI --mode multiline --terse dev show lang: pl_PL.UTF-8 returncode: 0 @@ -43351,7 +43351,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 11584 -location: clients/tests/test-client.py:1040:test_004()/775 +location: clients/tests/test-client.py:1048:test_004()/775 cmd: $NMCLI --mode multiline --terse -f all dev show lang: C returncode: 0 @@ -43730,7 +43730,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 11630 -location: clients/tests/test-client.py:1040:test_004()/776 +location: clients/tests/test-client.py:1048:test_004()/776 cmd: $NMCLI --mode multiline --terse -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -44109,7 +44109,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 899 -location: clients/tests/test-client.py:1043:test_004()/777 +location: clients/tests/test-client.py:1051:test_004()/777 cmd: $NMCLI --mode multiline --terse dev show wlan0 lang: C returncode: 0 @@ -44142,7 +44142,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 909 -location: clients/tests/test-client.py:1043:test_004()/778 +location: clients/tests/test-client.py:1051:test_004()/778 cmd: $NMCLI --mode multiline --terse dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -44175,7 +44175,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2646 -location: clients/tests/test-client.py:1046:test_004()/779 +location: clients/tests/test-client.py:1054:test_004()/779 cmd: $NMCLI --mode multiline --terse -f all dev show wlan0 lang: C returncode: 0 @@ -44273,7 +44273,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2683 -location: clients/tests/test-client.py:1046:test_004()/780 +location: clients/tests/test-client.py:1054:test_004()/780 cmd: $NMCLI --mode multiline --terse -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -44371,7 +44371,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 1133 -location: clients/tests/test-client.py:1049:test_004()/781 +location: clients/tests/test-client.py:1057:test_004()/781 cmd: $NMCLI --mode multiline --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -44414,7 +44414,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1143 -location: clients/tests/test-client.py:1049:test_004()/782 +location: clients/tests/test-client.py:1057:test_004()/782 cmd: $NMCLI --mode multiline --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -44457,7 +44457,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1133 -location: clients/tests/test-client.py:1052:test_004()/783 +location: clients/tests/test-client.py:1060:test_004()/783 cmd: $NMCLI --mode multiline --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -44500,7 +44500,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1143 -location: clients/tests/test-client.py:1052:test_004()/784 +location: clients/tests/test-client.py:1060:test_004()/784 cmd: $NMCLI --mode multiline --terse -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -44543,7 +44543,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 555 -location: clients/tests/test-client.py:1055:test_004()/785 +location: clients/tests/test-client.py:1063:test_004()/785 cmd: $NMCLI --mode multiline --terse -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -44567,7 +44567,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/Devices/3 <<< size: 565 -location: clients/tests/test-client.py:1055:test_004()/786 +location: clients/tests/test-client.py:1063:test_004()/786 cmd: $NMCLI --mode multiline --terse -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -44591,7 +44591,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/Devices/3 <<< size: 1640 -location: clients/tests/test-client.py:1058:test_004()/787 +location: clients/tests/test-client.py:1066:test_004()/787 cmd: $NMCLI --mode multiline --terse -f ALL device wifi list lang: C returncode: 0 @@ -44670,7 +44670,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 1698 -location: clients/tests/test-client.py:1058:test_004()/788 +location: clients/tests/test-client.py:1066:test_004()/788 cmd: $NMCLI --mode multiline --terse -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -44749,7 +44749,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 562 -location: clients/tests/test-client.py:1060:test_004()/789 +location: clients/tests/test-client.py:1068:test_004()/789 cmd: $NMCLI --mode multiline --terse -f COMMON device wifi list lang: C returncode: 0 @@ -44792,7 +44792,7 @@ SECURITY:WPA1 WPA2 <<< size: 608 -location: clients/tests/test-client.py:1060:test_004()/790 +location: clients/tests/test-client.py:1068:test_004()/790 cmd: $NMCLI --mode multiline --terse -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -44835,7 +44835,7 @@ SECURITY:WPA1 WPA2 <<< size: 1753 -location: clients/tests/test-client.py:1063:test_004()/791 +location: clients/tests/test-client.py:1071:test_004()/791 cmd: $NMCLI --mode multiline --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -44914,7 +44914,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 1811 -location: clients/tests/test-client.py:1063:test_004()/792 +location: clients/tests/test-client.py:1071:test_004()/792 cmd: $NMCLI --mode multiline --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -44993,7 +44993,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 560 -location: clients/tests/test-client.py:1065:test_004()/793 +location: clients/tests/test-client.py:1073:test_004()/793 cmd: $NMCLI --mode multiline --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -45019,7 +45019,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 582 -location: clients/tests/test-client.py:1065:test_004()/794 +location: clients/tests/test-client.py:1073:test_004()/794 cmd: $NMCLI --mode multiline --terse -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -45045,7 +45045,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 292 -location: clients/tests/test-client.py:1067:test_004()/795 +location: clients/tests/test-client.py:1075:test_004()/795 cmd: $NMCLI --mode multiline --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -45062,7 +45062,7 @@ SECURITY:WPA1 WPA2 <<< size: 312 -location: clients/tests/test-client.py:1067:test_004()/796 +location: clients/tests/test-client.py:1075:test_004()/796 cmd: $NMCLI --mode multiline --terse -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -45079,7 +45079,7 @@ SECURITY:WPA1 WPA2 <<< size: 673 -location: clients/tests/test-client.py:1070:test_004()/797 +location: clients/tests/test-client.py:1078:test_004()/797 cmd: $NMCLI --mode multiline --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -45105,7 +45105,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 695 -location: clients/tests/test-client.py:1070:test_004()/798 +location: clients/tests/test-client.py:1078:test_004()/798 cmd: $NMCLI --mode multiline --terse -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -45131,7 +45131,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 2649 -location: clients/tests/test-client.py:1072:test_004()/799 +location: clients/tests/test-client.py:1080:test_004()/799 cmd: $NMCLI --mode multiline --terse -f ALL device show wlan0 lang: C returncode: 0 @@ -45229,7 +45229,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2686 -location: clients/tests/test-client.py:1072:test_004()/800 +location: clients/tests/test-client.py:1080:test_004()/800 cmd: $NMCLI --mode multiline --terse -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -45327,7 +45327,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 912 -location: clients/tests/test-client.py:1074:test_004()/801 +location: clients/tests/test-client.py:1082:test_004()/801 cmd: $NMCLI --mode multiline --terse -f COMMON device show wlan0 lang: C returncode: 0 @@ -45360,7 +45360,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 922 -location: clients/tests/test-client.py:1074:test_004()/802 +location: clients/tests/test-client.py:1082:test_004()/802 cmd: $NMCLI --mode multiline --terse -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -45393,7 +45393,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2787 -location: clients/tests/test-client.py:1076:test_004()/803 +location: clients/tests/test-client.py:1084:test_004()/803 cmd: $NMCLI --mode multiline --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -45491,7 +45491,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2824 -location: clients/tests/test-client.py:1076:test_004()/804 +location: clients/tests/test-client.py:1084:test_004()/804 cmd: $NMCLI --mode multiline --terse -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -45589,7 +45589,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2352 -location: clients/tests/test-client.py:1014:test_004()/805 +location: clients/tests/test-client.py:1022:test_004()/805 cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -45691,7 +45691,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2362 -location: clients/tests/test-client.py:1014:test_004()/806 +location: clients/tests/test-client.py:1022:test_004()/806 cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -45793,7 +45793,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2352 -location: clients/tests/test-client.py:1016:test_004()/807 +location: clients/tests/test-client.py:1024:test_004()/807 cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1 lang: C returncode: 0 @@ -45895,7 +45895,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 2362 -location: clients/tests/test-client.py:1016:test_004()/808 +location: clients/tests/test-client.py:1024:test_004()/808 cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -45997,7 +45997,7 @@ VPN.CFG[3]:key3 = val3 <<< size: 1800 -location: clients/tests/test-client.py:1019:test_004()/809 +location: clients/tests/test-client.py:1027:test_004()/809 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1 lang: C returncode: 0 @@ -46079,7 +46079,7 @@ proxy.pac-script: <<< size: 1810 -location: clients/tests/test-client.py:1019:test_004()/810 +location: clients/tests/test-client.py:1027:test_004()/810 cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -46161,7 +46161,7 @@ proxy.pac-script: <<< size: 351 -location: clients/tests/test-client.py:1025:test_004()/811 +location: clients/tests/test-client.py:1033:test_004()/811 cmd: $NMCLI --mode multiline --terse --color yes -f VPN con s con-vpn-1 lang: C returncode: 0 @@ -46176,7 +46176,7 @@ vpn.timeout:0 <<< size: 361 -location: clients/tests/test-client.py:1025:test_004()/812 +location: clients/tests/test-client.py:1033:test_004()/812 cmd: $NMCLI --mode multiline --terse --color yes -f VPN con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -46191,7 +46191,7 @@ vpn.timeout:0 <<< size: 554 -location: clients/tests/test-client.py:1028:test_004()/813 +location: clients/tests/test-client.py:1036:test_004()/813 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL con s con-vpn-1 lang: C returncode: 0 @@ -46212,7 +46212,7 @@ GENERAL.MASTER-PATH: <<< size: 564 -location: clients/tests/test-client.py:1028:test_004()/814 +location: clients/tests/test-client.py:1036:test_004()/814 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL con s con-vpn-1 lang: pl_PL.UTF-8 returncode: 0 @@ -46233,7 +46233,7 @@ GENERAL.MASTER-PATH: <<< size: 603 -location: clients/tests/test-client.py:1031:test_004()/815 +location: clients/tests/test-client.py:1039:test_004()/815 cmd: $NMCLI --mode multiline --terse --color yes dev s lang: C returncode: 0 @@ -46262,7 +46262,7 @@ CONNECTION:con-vpn-1 <<< size: 613 -location: clients/tests/test-client.py:1031:test_004()/816 +location: clients/tests/test-client.py:1039:test_004()/816 cmd: $NMCLI --mode multiline --terse --color yes dev s lang: pl_PL.UTF-8 returncode: 0 @@ -46291,7 +46291,7 @@ CONNECTION:con-vpn-1 <<< size: 1182 -location: clients/tests/test-client.py:1034:test_004()/817 +location: clients/tests/test-client.py:1042:test_004()/817 cmd: $NMCLI --mode multiline --terse --color yes -f all dev status lang: C returncode: 0 @@ -46335,7 +46335,7 @@ CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 <<< size: 1192 -location: clients/tests/test-client.py:1034:test_004()/818 +location: clients/tests/test-client.py:1042:test_004()/818 cmd: $NMCLI --mode multiline --terse --color yes -f all dev status lang: pl_PL.UTF-8 returncode: 0 @@ -46379,7 +46379,7 @@ CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/2 <<< size: 4569 -location: clients/tests/test-client.py:1037:test_004()/819 +location: clients/tests/test-client.py:1045:test_004()/819 cmd: $NMCLI --mode multiline --terse --color yes dev show lang: C returncode: 0 @@ -46525,7 +46525,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 4579 -location: clients/tests/test-client.py:1037:test_004()/820 +location: clients/tests/test-client.py:1045:test_004()/820 cmd: $NMCLI --mode multiline --terse --color yes dev show lang: pl_PL.UTF-8 returncode: 0 @@ -46671,7 +46671,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 11884 -location: clients/tests/test-client.py:1040:test_004()/821 +location: clients/tests/test-client.py:1048:test_004()/821 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show lang: C returncode: 0 @@ -47050,7 +47050,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 11930 -location: clients/tests/test-client.py:1040:test_004()/822 +location: clients/tests/test-client.py:1048:test_004()/822 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show lang: pl_PL.UTF-8 returncode: 0 @@ -47429,7 +47429,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 911 -location: clients/tests/test-client.py:1043:test_004()/823 +location: clients/tests/test-client.py:1051:test_004()/823 cmd: $NMCLI --mode multiline --terse --color yes dev show wlan0 lang: C returncode: 0 @@ -47462,7 +47462,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 921 -location: clients/tests/test-client.py:1043:test_004()/824 +location: clients/tests/test-client.py:1051:test_004()/824 cmd: $NMCLI --mode multiline --terse --color yes dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -47495,7 +47495,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 2874 -location: clients/tests/test-client.py:1046:test_004()/825 +location: clients/tests/test-client.py:1054:test_004()/825 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show wlan0 lang: C returncode: 0 @@ -47593,7 +47593,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2911 -location: clients/tests/test-client.py:1046:test_004()/826 +location: clients/tests/test-client.py:1054:test_004()/826 cmd: $NMCLI --mode multiline --terse --color yes -f all dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -47691,7 +47691,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 1145 -location: clients/tests/test-client.py:1049:test_004()/827 +location: clients/tests/test-client.py:1057:test_004()/827 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -47734,7 +47734,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1155 -location: clients/tests/test-client.py:1049:test_004()/828 +location: clients/tests/test-client.py:1057:test_004()/828 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -47777,7 +47777,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1145 -location: clients/tests/test-client.py:1052:test_004()/829 +location: clients/tests/test-client.py:1060:test_004()/829 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: C returncode: 0 @@ -47820,7 +47820,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 1155 -location: clients/tests/test-client.py:1052:test_004()/830 +location: clients/tests/test-client.py:1060:test_004()/830 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,GENERAL.HWADDR,WIFI-PROPERTIES dev show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -47863,7 +47863,7 @@ WIFI-PROPERTIES.5GHZ:unknown <<< size: 687 -location: clients/tests/test-client.py:1055:test_004()/831 +location: clients/tests/test-client.py:1063:test_004()/831 cmd: $NMCLI --mode multiline --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: C returncode: 0 @@ -47887,7 +47887,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/Devices/3 <<< size: 697 -location: clients/tests/test-client.py:1055:test_004()/832 +location: clients/tests/test-client.py:1063:test_004()/832 cmd: $NMCLI --mode multiline --terse --color yes -f DEVICE,TYPE,DBUS-PATH dev lang: pl_PL.UTF-8 returncode: 0 @@ -47911,7 +47911,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/Devices/3 <<< size: 2264 -location: clients/tests/test-client.py:1058:test_004()/833 +location: clients/tests/test-client.py:1066:test_004()/833 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device wifi list lang: C returncode: 0 @@ -47990,7 +47990,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 2322 -location: clients/tests/test-client.py:1058:test_004()/834 +location: clients/tests/test-client.py:1066:test_004()/834 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -48069,7 +48069,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 862 -location: clients/tests/test-client.py:1060:test_004()/835 +location: clients/tests/test-client.py:1068:test_004()/835 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device wifi list lang: C returncode: 0 @@ -48112,7 +48112,7 @@ SECURITY:WPA1 WPA2 <<< size: 908 -location: clients/tests/test-client.py:1060:test_004()/836 +location: clients/tests/test-client.py:1068:test_004()/836 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -48155,7 +48155,7 @@ SECURITY:WPA1 WPA2 <<< size: 2377 -location: clients/tests/test-client.py:1063:test_004()/837 +location: clients/tests/test-client.py:1071:test_004()/837 cmd: $NMCLI --mode multiline --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: C returncode: 0 @@ -48234,7 +48234,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 2435 -location: clients/tests/test-client.py:1063:test_004()/838 +location: clients/tests/test-client.py:1071:test_004()/838 cmd: $NMCLI --mode multiline --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list lang: pl_PL.UTF-8 returncode: 0 @@ -48313,7 +48313,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/3 <<< size: 725 -location: clients/tests/test-client.py:1065:test_004()/839 +location: clients/tests/test-client.py:1073:test_004()/839 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -48339,7 +48339,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 747 -location: clients/tests/test-client.py:1065:test_004()/840 +location: clients/tests/test-client.py:1073:test_004()/840 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -48365,7 +48365,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 377 -location: clients/tests/test-client.py:1067:test_004()/841 +location: clients/tests/test-client.py:1075:test_004()/841 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -48382,7 +48382,7 @@ SECURITY:WPA1 WPA2 <<< size: 396 -location: clients/tests/test-client.py:1067:test_004()/842 +location: clients/tests/test-client.py:1075:test_004()/842 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -48399,7 +48399,7 @@ SECURITY:WPA1 WPA2 <<< size: 838 -location: clients/tests/test-client.py:1070:test_004()/843 +location: clients/tests/test-client.py:1078:test_004()/843 cmd: $NMCLI --mode multiline --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: C returncode: 0 @@ -48425,7 +48425,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 860 -location: clients/tests/test-client.py:1070:test_004()/844 +location: clients/tests/test-client.py:1078:test_004()/844 cmd: $NMCLI --mode multiline --terse --color yes -f NAME,SSID,SSID-HEX,BSSID,MODE,CHAN,FREQ,RATE,SIGNAL,BARS,SECURITY,WPA-FLAGS,RSN-FLAGS,DEVICE,ACTIVE,IN-USE,DBUS-PATH device wifi list bssid C0:E2:BE:E8:EF:B6 lang: pl_PL.UTF-8 returncode: 0 @@ -48451,7 +48451,7 @@ DBUS-PATH:/org/freedesktop/NetworkManager/AccessPoint/2 <<< size: 2877 -location: clients/tests/test-client.py:1072:test_004()/845 +location: clients/tests/test-client.py:1080:test_004()/845 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device show wlan0 lang: C returncode: 0 @@ -48549,7 +48549,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 2914 -location: clients/tests/test-client.py:1072:test_004()/846 +location: clients/tests/test-client.py:1080:test_004()/846 cmd: $NMCLI --mode multiline --terse --color yes -f ALL device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -48647,7 +48647,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 924 -location: clients/tests/test-client.py:1074:test_004()/847 +location: clients/tests/test-client.py:1082:test_004()/847 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device show wlan0 lang: C returncode: 0 @@ -48680,7 +48680,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 934 -location: clients/tests/test-client.py:1074:test_004()/848 +location: clients/tests/test-client.py:1082:test_004()/848 cmd: $NMCLI --mode multiline --terse --color yes -f COMMON device show wlan0 lang: pl_PL.UTF-8 returncode: 0 @@ -48713,7 +48713,7 @@ IP6.DOMAIN[6]:sear6.foo4.bar <<< size: 3015 -location: clients/tests/test-client.py:1076:test_004()/849 +location: clients/tests/test-client.py:1084:test_004()/849 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: C returncode: 0 @@ -48811,7 +48811,7 @@ CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con- <<< size: 3052 -location: clients/tests/test-client.py:1076:test_004()/850 +location: clients/tests/test-client.py:1084:test_004()/850 cmd: $NMCLI --mode multiline --terse --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0 lang: pl_PL.UTF-8 returncode: 0 diff --git a/clients/tests/test-client.py b/clients/tests/test-client.py index 3ab5de3130..e8f1f7f2e7 100755 --- a/clients/tests/test-client.py +++ b/clients/tests/test-client.py @@ -872,6 +872,11 @@ class TestNmcli(NmTestBase): self.call_nmcli_l(['c', 's'], replace_stdout = replace_stdout) + replace_stdout.append((Util.memoize_nullary(lambda: self.srv.findConnectionUuid('con-gsm1')), 'UUID-con-gsm1-REPLACED-REPLACED-REPL')) + + self.call_nmcli(['connection', 'add', 'type', 'gsm', 'autoconnect', 'no', 'con-name', 'con-gsm1', 'ifname', '*', 'apn', 'xyz.con-gsm1', 'serial.baud', '5', 'serial.send-delay', '100', 'serial.pari', '1'], + replace_stdout = replace_stdout) + replace_stdout.append((Util.memoize_nullary(lambda: self.srv.findConnectionUuid('ethernet')), 'UUID-ethernet-REPLACED-REPLACED-REPL')) self.call_nmcli(['c', 'add', 'type', 'ethernet', 'ifname', '*'], @@ -887,6 +892,9 @@ class TestNmcli(NmTestBase): replace_stdout = replace_stdout, sort_lines_stdout = True) + self.call_nmcli_l(['con', 's', 'con-gsm1'], + replace_stdout = replace_stdout) + # activate the same profile on multiple devices. Our stub-implmentation # is fine with that... although NetworkManager service would reject # such a configuration by deactivating the profile first. But note that