mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
46 lines
807 B
YAML
46 lines
807 B
YAML
|
---
|
||
|
|
||
|
- name: setup - remove motd
|
||
|
cnos_banner:
|
||
|
banner: motd
|
||
|
state: absent
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
|
||
|
- name: Set motd
|
||
|
cnos_banner:
|
||
|
banner: motd
|
||
|
text: |
|
||
|
this is my motd banner
|
||
|
that has a multiline
|
||
|
string
|
||
|
state: present
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
register: result
|
||
|
|
||
|
- debug:
|
||
|
msg: "{{ result }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
# - "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands"
|
||
|
|
||
|
- name: Set motd again (idempotent)
|
||
|
cnos_banner:
|
||
|
banner: motd
|
||
|
text: |
|
||
|
this is my motd banner
|
||
|
that has a multiline
|
||
|
string
|
||
|
state: present
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.commands | length == 0"
|