From 4a84fd2ac6b5824dc292368fcd708f056caf5260 Mon Sep 17 00:00:00 2001 From: GGabriele Date: Mon, 5 Sep 2016 17:50:01 +0200 Subject: [PATCH] Fixed docstring --- network/nxos/nxos_portchannel.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/network/nxos/nxos_portchannel.py b/network/nxos/nxos_portchannel.py index 856f79b1a3c..49328ea4c84 100644 --- a/network/nxos/nxos_portchannel.py +++ b/network/nxos/nxos_portchannel.py @@ -21,38 +21,38 @@ DOCUMENTATION = ''' module: nxos_portchannel version_added: "2.2" -short_description: Manages port-channel interfaces +short_description: Manages port-channel interfaces. description: - - Manages port-channel specific configuration parameters + - Manages port-channel specific configuration parameters. extends_documentation_fragment: nxos author: - Jason Edelman (@jedelman8) - Gabriele Gerbino (@GGabriele) notes: - - Absent removes the portchannel config and interface if it + - C(state=absent) removes the portchannel config and interface if it already exists. If members to be removed are not explicitly passed, all existing members (if any), are removed. - - Members must be a list - - LACP needs to be enabled first if active/passive modes are used + - Members must be a list. + - LACP needs to be enabled first if active/passive modes are used. options: group: description: - - channel-group number for the port-channel + - Channel-group number for the port-channel. required: true mode: description: - - Mode for the port-channel, i.e. on, active, passive + - Mode for the port-channel, i.e. on, active, passive. required: false default: on choices: ['active','passive','on'] min_links: description: - - min links required to keep portchannel up + - Min links required to keep portchannel up. required: false default: null members: description: - - List of interfaces that will be managed in a given portchannel + - List of interfaces that will be managed in a given portchannel. required: false default: null force: @@ -65,7 +65,7 @@ options: default: false state: description: - - Manage the state of the resource + - Manage the state of the resource. required: false default: present choices: ['present','absent']