mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-18 17:48:28 +02:00
nmcli: don't hang activation of masters that progress beyond ip-config
Some master connetions are able to progress beyond activating/ip-config -- the slaves might have appeared during the activation, or the connection doesn't need slaves to obtain the configuration (it could be method=manual or shared).
This commit is contained in:
parent
33f954e251
commit
2e958baceb
1 changed files with 1 additions and 1 deletions
|
|
@ -1855,7 +1855,7 @@ device_state_cb (NMDevice *device, GParamSpec *pspec, gpointer user_data)
|
|||
nm_object_get_path (NM_OBJECT (active)));
|
||||
quit ();
|
||||
} else if ( ac_state == NM_ACTIVE_CONNECTION_STATE_ACTIVATING
|
||||
&& state == NM_DEVICE_STATE_IP_CONFIG) {
|
||||
&& state >= NM_DEVICE_STATE_IP_CONFIG) {
|
||||
if (nmc->print_output == NMC_PRINT_PRETTY)
|
||||
nmc_terminal_erase_line ();
|
||||
g_print (_("Connection successfully activated (master waiting for slaves) (D-Bus active path: %s)\n"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue