From 842648a99211441c4b7c41895ecbabf456f285c0 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 4 Nov 2014 09:38:01 +0100 Subject: [PATCH] team: Don't let teamd rip off the link when it terminates We might be reactivating a connection on the device and don't want it to go away. In other cases we still take care of the link deletion ourselves. --- src/devices/team/nm-device-team.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/team/nm-device-team.c b/src/devices/team/nm-device-team.c index df27562019..3c949258c0 100644 --- a/src/devices/team/nm-device-team.c +++ b/src/devices/team/nm-device-team.c @@ -453,6 +453,7 @@ teamd_start (NMDevice *device, NMSettingTeam *s_team) g_ptr_array_add (argv, (gpointer) "-n"); g_ptr_array_add (argv, (gpointer) "-U"); g_ptr_array_add (argv, (gpointer) "-D"); + g_ptr_array_add (argv, (gpointer) "-N"); g_ptr_array_add (argv, (gpointer) "-t"); g_ptr_array_add (argv, (gpointer) iface);