mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update Banner Doc (#23412)
I think most people's banner will come from an external file. Show an example, and clarify there is no extra lines allowed.
This commit is contained in:
parent
e8f1747a88
commit
83a6d90899
1 changed files with 8 additions and 1 deletions
|
@ -44,7 +44,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- The banner text that should be
|
- The banner text that should be
|
||||||
present in the remote device running configuration. This argument
|
present in the remote device running configuration. This argument
|
||||||
accepts a multiline string. Requires I(state=present).
|
accepts a multiline string, with no empty lines. Requires I(state=present).
|
||||||
default: null
|
default: null
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
|
@ -68,6 +68,13 @@ EXAMPLES = """
|
||||||
ios_banner:
|
ios_banner:
|
||||||
banner: motd
|
banner: motd
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
|
- name: Configure banner from file
|
||||||
|
ios_banner:
|
||||||
|
banner: motd
|
||||||
|
text: "{{ lookup('file', './config_partial/raw_banner.cfg') }}"
|
||||||
|
state: present
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
|
Loading…
Reference in a new issue