ansible/test/integration/targets/junos_config/tests/netconf/invalid.yaml
John R Barker fb3bef7f46 Use inventory_hostname_short (#20054)
When using AWS we have to use the full domain name in the inventory file, which
we rather than the short name. This change avoids that ending up being
set in the tests.
2017-01-09 17:21:04 +00:00

29 lines
585 B
YAML

---
- debug: msg="START netconf/invalid.yaml"
- name: configure single invalid command
junos_config:
lines:
- 'set system foo'
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- name: configure multiple invalid command
junos_config:
lines:
- 'set system host-name {{ inventory_hostname_short }}'
- 'set system foo'
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- debug: msg="END netconf/invalid.yaml"