summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-team.c
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2013-09-06 13:17:51 +0200
committerJiří Klimeš <jklimes@redhat.com>2013-09-06 13:52:27 +0200
commit9835da7c748b2b9dd916fd3cf0e32ec1b00da3bd (patch)
treed182a5b629a6c482341553b7b77f2f8744111cd2 /libnm-util/nm-setting-team.c
parent242bebfb3d7558afcf68fa6b00cabb761b182d4e (diff)
downloadNetworkManager-9835da7c748b2b9dd916fd3cf0e32ec1b00da3bd.tar.gz
libnm-util: update description of team:config and team-port:config properties
Diffstat (limited to 'libnm-util/nm-setting-team.c')
-rw-r--r--libnm-util/nm-setting-team.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/libnm-util/nm-setting-team.c b/libnm-util/nm-setting-team.c
index d52eeac2b4..fa0cebb3ba 100644
--- a/libnm-util/nm-setting-team.c
+++ b/libnm-util/nm-setting-team.c
@@ -241,13 +241,21 @@ nm_setting_team_class_init (NMSettingTeamClass *setting_class)
/**
* NMSettingTeam:config:
*
- * The config of team network interface
+ * JSON configuration for the team network interface.
+ * The property should contain raw JSON configuration data
+ * suitable for teamd, because the value is passed directly to
+ * teamd. If not specified, the default configuration is used.
+ * See man teamd.conf for the format details.
**/
g_object_class_install_property
(object_class, PROP_CONFIG,
g_param_spec_string (NM_SETTING_TEAM_CONFIG,
"Config",
- "The config of team network interface",
+ "JSON configuration for the team network interface. "
+ "The property should contain raw JSON configuration data "
+ "suitable for teamd, because the value is passed directly to "
+ "teamd. If not specified, the default configuration is used. "
+ "See man teamd.conf for the format details.",
NULL,
G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE));
}