mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1009 B
YAML
48 lines
1009 B
YAML
---
|
|
- debug:
|
|
msg: "cli/basic-pre-login.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup - remove pre-login
|
|
vyos_banner:
|
|
banner: pre-login
|
|
state: absent
|
|
|
|
- name: Set pre-login
|
|
vyos_banner:
|
|
banner: pre-login
|
|
text: |
|
|
this is my pre-login banner
|
|
that has a multiline
|
|
string
|
|
state: present
|
|
register: result
|
|
|
|
- debug:
|
|
msg: "{{ result }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'this is my pre-login banner' in result.commands[0]"
|
|
- "'that has a multiline' in result.commands[0]"
|
|
|
|
- name: Set pre-login again (idempotent)
|
|
vyos_banner:
|
|
banner: pre-login
|
|
text: |
|
|
this is my pre-login banner
|
|
that has a multiline
|
|
string
|
|
state: present
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.commands | length == 0"
|
|
|
|
|
|
# FIXME add in tests for everything defined in docs
|
|
# FIXME Test state:absent + test:
|
|
# FIXME Without powers ensure "privileged mode required"
|