mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-20 15:20:21 -07:00
Fix ios_config file prompt issue (#32744)
Fixes #23263 Add a carriage return (\r) at end on copy config command which results in prompt on cli terminal
This commit is contained in:
parent
316e7939d6
commit
37b0537279
3 changed files with 27 additions and 4 deletions
|
@ -34,10 +34,33 @@
|
|||
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
||||
ignore_errors: true
|
||||
|
||||
- name: delete config (setup)
|
||||
ios_config:
|
||||
replace: line
|
||||
lines:
|
||||
- "ip http server"
|
||||
save_when: modified
|
||||
authorize: yes
|
||||
register: result
|
||||
|
||||
- name: save should always run
|
||||
ios_config:
|
||||
replace: line
|
||||
lines:
|
||||
- "ip http server"
|
||||
save_when: modified
|
||||
authorize: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
||||
ignore_errors: true
|
||||
|
||||
- name: teardown
|
||||
ios_config:
|
||||
lines:
|
||||
- "no ip http server"
|
||||
authorize: yes
|
||||
register: result
|
||||
|
||||
- debug: msg="END cli/save.yaml"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue