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.
47 lines
884 B
YAML
47 lines
884 B
YAML
---
|
|
- debug: msg="START cli/defaults.yaml"
|
|
|
|
- name: setup
|
|
cnos_config:
|
|
commands:
|
|
- no vlan 13\n
|
|
ignore_errors: yes
|
|
become: True
|
|
become_method: enable
|
|
|
|
- name: configure device with defaults included
|
|
cnos_config:
|
|
src: roles/cnos_config/templates/defaults/config.j2
|
|
register: result
|
|
become: True
|
|
become_method: enable
|
|
|
|
- debug: var=result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.updates is not defined"
|
|
|
|
- name: check device with defaults included Hell
|
|
cnos_config:
|
|
src: roles/cnos_config/templates/defaults/config.j2
|
|
register: result
|
|
|
|
- debug: var=result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.updates is not defined"
|
|
|
|
- name: teardown
|
|
cnos_config:
|
|
commands:
|
|
- no vlan 13\n
|
|
become: true
|
|
become_method: enable
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END cli/defaults.yaml"
|