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.
17 lines
317 B
YAML
17 lines
317 B
YAML
8 years ago
|
---
|
||
|
- 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"
|