community.network.icx_banner – Manage multiline banners on Ruckus ICX 7000 series switches¶
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.icx_banner
.
Synopsis¶
This will configure both login and motd banners on remote ruckus ICX 7000 series switches. It allows playbooks to add or remove banner text from the active running configuration.
Parameters¶
Examples¶
- name: Configure the motd banner
community.network.icx_banner:
banner: motd
text: |
this is my motd banner
that contains a multiline
string
state: present
- name: Remove the motd banner
community.network.icx_banner:
banner: motd
state: absent
- name: Configure require-enter-key for motd
community.network.icx_banner:
banner: motd
enterkey: True
- name: Remove require-enter-key for motd
community.network.icx_banner:
banner: motd
enterkey: False
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Ruckus Wireless (@Commscope)