[patch NetworkManager 03/11] cli: add config option for team devices
- From: Jiri Pirko <jiri resnulli us>
- To: networkmanager-list gnome org
- Subject: [patch NetworkManager 03/11] cli: add config option for team devices
- Date: Fri, 16 Aug 2013 15:33:44 +0200
Signed-off-by: Jiri Pirko <jiri resnulli us>
---
cli/src/connections.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/cli/src/connections.c b/cli/src/connections.c
index b8e1061..6c5e625 100644
--- a/cli/src/connections.c
+++ b/cli/src/connections.c
@@ -2741,6 +2741,12 @@ cleanup_vlan:
/* Build up the settings required for 'team' */
char *team_ifname = NULL;
const char *ifname = NULL;
+ const char *config = NULL;
+ nmc_arg_t exp_args[] = { {"config", TRUE, &config, FALSE},
+ {NULL} };
+
+ if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error))
+ return FALSE;
/* Use connection's ifname as 'team' ifname if exists, else generate one */
ifname = nm_setting_connection_get_interface_name (s_con);
@@ -2758,6 +2764,8 @@ cleanup_vlan:
/* Set team options */
g_object_set (s_team, NM_SETTING_TEAM_INTERFACE_NAME, team_ifname, NULL);
+ if (config)
+ g_object_set (s_team, NM_SETTING_TEAM_CONFIG, config, NULL);
g_free (team_ifname);
--
1.8.3.1
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]