mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-11 11:21:05 +00:00
added lines to mode: strict (#27442)
This commit is contained in:
committed by
John R Barker
parent
60676add33
commit
e599a01bdc
@@ -8,7 +8,7 @@
|
||||
|
||||
- name: configure top level command
|
||||
iosxr_config:
|
||||
commands: ['hostname foo']
|
||||
commands: ['banner motd "hello world"', 'hostname foo']
|
||||
match: strict
|
||||
register: result
|
||||
|
||||
@@ -16,10 +16,11 @@
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'hostname foo' in result.commands"
|
||||
- "'banner motd \"hello world\"' in result.commands"
|
||||
|
||||
- name: configure top level command idempotent check
|
||||
iosxr_config:
|
||||
commands: ['hostname foo']
|
||||
commands: ['banner motd "hello world"', 'hostname foo']
|
||||
match: strict
|
||||
register: result
|
||||
|
||||
|
||||
Reference in New Issue
Block a user