mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-11 10:28:13 +02:00
nmcli: Clarify what a valid secondary is
This commit is contained in:
parent
9275889767
commit
a708f2ce9b
1 changed files with 2 additions and 2 deletions
|
|
@ -382,7 +382,7 @@ _set_fcn_precheck_connection_secondaries(NMClient *client,
|
|||
} else {
|
||||
/* Currently, NM only supports VPN connections as secondaries */
|
||||
if (!nm_connection_is_valid_secondary(con)) {
|
||||
g_set_error(error, 1, 0, _("'%s' is not a valid secondary profile"), *iter);
|
||||
g_set_error(error, 1, 0, _("'%s' is not a valid VPN profile, e.g., Wireguard or OpenVPN."), *iter);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
@ -394,7 +394,7 @@ _set_fcn_precheck_connection_secondaries(NMClient *client,
|
|||
}
|
||||
/* Currently, NM only supports VPN connections, including Wireguard, as secondaries */
|
||||
if (!nm_connection_is_valid_secondary(con)) {
|
||||
g_set_error(error, 1, 0, _("'%s' is not a valid secondary profile"), *iter);
|
||||
g_set_error(error, 1, 0, _("'%s' is not a valid VPN profile, e.g., Wireguard or OpenVPN."), *iter);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue