17 lines
317 B
YAML
17 lines
317 B
YAML
|
---
|
||
|
- debug: msg="START netconf/bad_action.yaml"
|
||
|
|
||
|
- name: configure single bad_action command
|
||
|
junos_config:
|
||
|
lines:
|
||
|
- 'invalid system foo'
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed == true"
|
||
|
|
||
|
- debug: msg="END netconf/bad_action.yaml"
|