Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/modules/network/slxos/slxos_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def save_config(module, result):
result['changed'] = True
if not module.check_mode:
command = {"command": "copy running-config startup-config",
"prompt": "This operation will modify your startup configuration. Do you want to continue", "answer": "y"}
"prompt": "This operation will back up the current configuration. Do you want to continue", "answer": "y"}
run_commands(module, command)
else:
module.warn('Skipping command `copy running-config startup-config` '
Expand Down