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.
ansible/test/integration/targets/vyos_config/tests/cli/simple.yaml

38 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"