mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 12:18:13 +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).
(cherry picked from commit 2e958baceb)
This commit is contained in:
parent
9c83d18da6
commit
649f88de67
1 changed files with 1 additions and 1 deletions
|
|
@ -1728,7 +1728,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