fixes docstring issue for junos_config arguments
The docstring was incorrectly merged with some old entries that will cause the documentation not to build correclty. It is now fixed.
This commit is contained in:
parent
5f0dc2b90f
commit
bf200458d3
1 changed files with 1 additions and 36 deletions
|
@ -25,7 +25,7 @@ short_description: Manage configuration on remote devices running Junos
|
||||||
description:
|
description:
|
||||||
- The M(junos_config) module provides an abstraction for working
|
- The M(junos_config) module provides an abstraction for working
|
||||||
with the configuration running on remote devices. It can perform
|
with the configuration running on remote devices. It can perform
|
||||||
operations that influence the confiugration state.
|
operations that influence the configuration state.
|
||||||
- This module provides an implementation for configuring Juniper
|
- This module provides an implementation for configuring Juniper
|
||||||
JUNOS devices. The configuration statements must start with either
|
JUNOS devices. The configuration statements must start with either
|
||||||
`set` or `delete` and are compared against the current device
|
`set` or `delete` and are compared against the current device
|
||||||
|
@ -40,15 +40,6 @@ options:
|
||||||
file in role or playbook root folder in templates directory.
|
file in role or playbook root folder in templates directory.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
backup:
|
|
||||||
description:
|
|
||||||
- When this argument is configured true, the module will backup
|
|
||||||
the configuration from the node prior to making any changes.
|
|
||||||
The backup file will be written to backup_{{ hostname }} in
|
|
||||||
the root of the playbook directory.
|
|
||||||
required: false
|
|
||||||
default: false
|
|
||||||
choices: ["true", "false"]
|
|
||||||
rollback:
|
rollback:
|
||||||
description:
|
description:
|
||||||
- The C(rollback) argument instructs the module to rollback the
|
- The C(rollback) argument instructs the module to rollback the
|
||||||
|
@ -82,18 +73,6 @@ options:
|
||||||
is set to False, this argument is silently ignored.
|
is set to False, this argument is silently ignored.
|
||||||
required: false
|
required: false
|
||||||
default: configured by junos_config
|
default: configured by junos_config
|
||||||
action:
|
|
||||||
description:
|
|
||||||
- The C(action) argument instructs the module how to load the
|
|
||||||
configuration into the remote device. When action is set to
|
|
||||||
I(merge) the C(src) template file is merged with the current
|
|
||||||
device configuration. When the I(replace) action is used,
|
|
||||||
the current device configuration is replaced by the C(src).
|
|
||||||
Finally when C(overwrite) is used, the device configuration will
|
|
||||||
be overwritten.
|
|
||||||
required: true
|
|
||||||
default: merge
|
|
||||||
choices: ['merge', 'replace', 'overwrite']
|
|
||||||
replace:
|
replace:
|
||||||
description:
|
description:
|
||||||
- The C(replace) argument will instruct the remote device to
|
- The C(replace) argument will instruct the remote device to
|
||||||
|
@ -102,20 +81,6 @@ options:
|
||||||
from this module.
|
from this module.
|
||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
overwrite:
|
|
||||||
description:
|
|
||||||
|
|
||||||
format:
|
|
||||||
description:
|
|
||||||
- The C(format) argument specifies the format of the configuration
|
|
||||||
template specified in C(src). If the format argument is not
|
|
||||||
specified, the module will attempt to infer the configuration
|
|
||||||
format based of file extension. Files that end in I(xml) will set
|
|
||||||
the format to xml. Files that end in I(set) will set the format
|
|
||||||
to set and all other files will default the format to text.
|
|
||||||
required: false
|
|
||||||
default: text
|
|
||||||
choices: ['text', 'xml', 'set']
|
|
||||||
requirements:
|
requirements:
|
||||||
- junos-eznc
|
- junos-eznc
|
||||||
notes:
|
notes:
|
||||||
|
|
Loading…
Reference in a new issue