From 401514ac7c042c2465c1d34dc451b21845950f1b Mon Sep 17 00:00:00 2001 From: GGabriele Date: Mon, 5 Sep 2016 17:27:56 +0200 Subject: [PATCH] Fixed docstring --- network/nxos/nxos_vrrp.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/network/nxos/nxos_vrrp.py b/network/nxos/nxos_vrrp.py index 8476bda8d41..5db65334160 100644 --- a/network/nxos/nxos_vrrp.py +++ b/network/nxos/nxos_vrrp.py @@ -21,53 +21,53 @@ DOCUMENTATION = ''' --- module: nxos_vrrp version_added: "2.1" -short_description: Manages VRRP configuration on NX-OS switches +short_description: Manages VRRP configuration on NX-OS switches. description: - - Manages VRRP configuration on NX-OS switches + - Manages VRRP configuration on NX-OS switches. extends_documentation_fragment: nxos author: - Jason Edelman (@jedelman8) - Gabriele Gerbino (@GGabriele) notes: - - VRRP feature needs to be enabled first on the system - - SVIs must exist before using this module - - Interface must be a L3 port before using this module - - I(state)=absent removes the vrrp group if it exists on the device - - VRRP cannot be configured on loopback interfaces + - VRRP feature needs to be enabled first on the system. + - SVIs must exist before using this module. + - Interface must be a L3 port before using this module. + - C(state=absent) removes the VRRP group if it exists on the device. + - VRRP cannot be configured on loopback interfaces. options: group: description: - - VRRP group number + - VRRP group number. required: true interface: description: - - Full name of interface that is being managed for VRRP + - Full name of interface that is being managed for VRRP. required: true priority: description: - - VRRP priority + - VRRP priority. required: false default: null vip: description: - - VRRP virtual IP address + - VRRP virtual IP address. required: false default: null authentication: description: - - clear text authentication string + - Clear text authentication string. required: false default: null admin_state: description: - - Used to enable or disable the VRRP process + - Used to enable or disable the VRRP process. required: false choices: ['shutdown', 'no shutdown'] default: no shutdown version_added: "2.2" state: description: - - Specify desired state of the resource + - Specify desired state of the resource. required: false default: present choices: ['present','absent']