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.
42 lines
795 B
YAML
42 lines
795 B
YAML
8 years ago
|
---
|
||
|
- name: Setup
|
||
|
ios_banner:
|
||
|
banner: login
|
||
|
text: |
|
||
|
Junk login banner
|
||
|
over multiple lines
|
||
|
state: present
|
||
|
authorize: yes
|
||
|
|
||
|
- name: remove login
|
||
|
ios_banner:
|
||
|
banner: login
|
||
|
state: absent
|
||
|
authorize: yes
|
||
|
register: result
|
||
|
|
||
|
- debug:
|
||
|
msg: "{{ result }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'no banner login' in result.commands" # does this break due to "contains?"
|
||
|
|
||
|
- name: remove login (idempotent)
|
||
|
ios_banner:
|
||
|
banner: login
|
||
|
state: absent
|
||
|
authorize: yes
|
||
|
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"
|