e0cc7b3415
* Docs Networking tests * Copy networking tests from test-network-modules * Networking transport settings - group_vars * Network playbooks * Debug should be off by default * Update nxos.yaml * Remove items from top level * Use dependencies, not pre-tasks * Remove trailing blank lines * Remove backup files * newlines
16 lines
317 B
YAML
16 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"
|