From e1e4740648d3ee522c8a80d1af6282afce94f53d Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 16 Sep 2013 13:42:23 -0400 Subject: [PATCH] cli: recognize InfiniBand partitions as virtual We don't need to hardcode the kinds of devices that are virtual here; NMConnection already knows. --- cli/src/connections.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cli/src/connections.c b/cli/src/connections.c index 1397cdefc4..10546267e9 100644 --- a/cli/src/connections.c +++ b/cli/src/connections.c @@ -1612,10 +1612,7 @@ do_connection_up (NmCli *nmc, int argc, char **argv) g_assert (s_con); con_type = nm_setting_connection_get_connection_type (s_con); - if ( nm_connection_is_type (connection, NM_SETTING_BOND_SETTING_NAME) - || nm_connection_is_type (connection, NM_SETTING_TEAM_SETTING_NAME) - || nm_connection_is_type (connection, NM_SETTING_VLAN_SETTING_NAME) - || nm_connection_is_type (connection, NM_SETTING_BRIDGE_SETTING_NAME)) + if (nm_connection_get_virtual_iface_name (connection)) is_virtual = TRUE; device_found = find_device_for_connection (nmc, connection, ifname, ap, nsp, &device, &spec_object, &error);