device: remove pending dhcp actions also in IP_DONE state

When the IP status is IP_DONE and a DHCP transaction succeeds the
'dhcp4' and 'dhcp6' pending actions must be removed. Without this, a
temporary link loss just after the activation would cause a DHCP
restart and those actions would remain set, blocking the startup.

https://bugzilla.redhat.com/show_bug.cgi?id=1330893
(cherry picked from commit 0b66eb298e)
This commit is contained in:
Beniamino Galvani 2016-05-02 17:13:06 +02:00
parent b2f35d58f5
commit 21ca2cf0f6

View file

@ -4467,6 +4467,8 @@ dhcp4_lease_change (NMDevice *self, NMIP4Config *config)
NULL,
NULL,
NULL);
nm_device_remove_pending_action (self, PENDING_ACTION_DHCP4, FALSE);
}
}
@ -5198,6 +5200,8 @@ dhcp6_lease_change (NMDevice *self)
settings_connection,
nm_device_get_applied_connection (self),
self, NULL, NULL, NULL);
nm_device_remove_pending_action (self, PENDING_ACTION_DHCP6, FALSE);
}
}