Fixed docstring

reviewable/pr18780/r1
GGabriele 8 years ago
parent 70ef9ae42c
commit cabc937b30

@ -20,17 +20,18 @@ DOCUMENTATION = '''
--- ---
module: nxos_igmp module: nxos_igmp
version_added: "2.2" version_added: "2.2"
short_description: Manages IGMP global configuration short_description: Manages IGMP global configuration.
description: description:
- Manages IGMP global configuration configuration settings - Manages IGMP global configuration configuration settings.
extends_documentation_fragment: nxos extends_documentation_fragment: nxos
author: author:
- Jason Edelman (@jedelman8) - Jason Edelman (@jedelman8)
- Gabriele Gerbino (@GGabriele) - Gabriele Gerbino (@GGabriele)
notes: notes:
- When state=default, all supported params will be reset to a default state - When C(state=default), all supported params will be reset to a
default state.
- If restart is set to true with other params set, the restart will happen - If restart is set to true with other params set, the restart will happen
last, i.e. after the configuration takes place last, i.e. after the configuration takes place.
options: options:
flush_routes: flush_routes:
description: description:
@ -42,19 +43,19 @@ options:
enforce_rtr_alert: enforce_rtr_alert:
description: description:
- Enables or disables the enforce router alert option check for - Enables or disables the enforce router alert option check for
IGMPv2 and IGMPv3 packets IGMPv2 and IGMPv3 packets.
required: false required: false
default: null default: null
choices: ['true', 'false'] choices: ['true', 'false']
restart: restart:
description: description:
- restarts the igmp process (using an exec config command) - Restarts the igmp process (using an exec config command).
required: false required: false
default: null default: null
choices: ['true', 'false'] choices: ['true', 'false']
state: state:
description: description:
- Manages desired state of the resource - Manages desired state of the resource.
required: false required: false
default: present default: present
choices: ['present', 'default'] choices: ['present', 'default']

Loading…
Cancel
Save