mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
Add junos_banner declartive module (#25826)
* Add junos_banner declartive module * junos_banner implementation * Integration test for junos_banner * Integration test for net_banner (junos) * Minor fixes * Minor doc change
This commit is contained in:
parent
97e24dc317
commit
450263e934
20 changed files with 508 additions and 16 deletions
|
@ -37,7 +37,7 @@ options:
|
|||
- Specifies which banner that should be
|
||||
configured on the remote device.
|
||||
required: true
|
||||
choices: ['login', 'banner']
|
||||
choices: ['login', 'motd']
|
||||
text:
|
||||
description:
|
||||
- The banner text that should be
|
||||
|
@ -85,4 +85,15 @@ commands:
|
|||
- this is my login banner
|
||||
- that contains a multiline
|
||||
- string
|
||||
|
||||
rpc:
|
||||
description: load-configuration RPC send to the device
|
||||
returned: when configuration is changed on device
|
||||
type: string
|
||||
sample: >
|
||||
<system>
|
||||
<login>
|
||||
<message>this is my login banner</message>
|
||||
</login>
|
||||
</system>"
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue