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.
38 lines
784 B
YAML
38 lines
784 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/simple.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
vyos_config:
|
||
|
lines: set system host-name {{ inventory_hostname }}
|
||
|
provider: "{{ cli }}"
|
||
|
match: none
|
||
|
|
||
|
- name: configure simple config command
|
||
|
vyos_config:
|
||
|
lines: set system host-name foo
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'set system host-name foo' in result.updates"
|
||
|
|
||
|
- name: check simple config command idempontent
|
||
|
vyos_config:
|
||
|
lines: set system host-name foo
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
vyos_config:
|
||
|
lines: set system host-name {{ inventory_hostname }}
|
||
|
provider: "{{ cli }}"
|
||
|
match: none
|
||
|
|
||
|
- debug: msg="END cli/simple.yaml"
|