9b9ed59d98
* Fix vyos signatures to match new versions * Fix test cases referring to 'updates' instead of 'commands' * I think this is an artifact of `connection: network_cli`?
37 lines
797 B
YAML
37 lines
797 B
YAML
---
|
|
- debug: msg="START cli/simple.yaml"
|
|
|
|
- name: setup
|
|
vyos_config:
|
|
lines: set system host-name {{ inventory_hostname_short }}
|
|
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.commands"
|
|
|
|
- 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_short }}
|
|
provider: "{{ cli }}"
|
|
match: none
|
|
|
|
- debug: msg="END cli/simple.yaml"
|