Exit admin mode properly on iosxr_config (#39594)
Fixes #38811 When using 'admin' in iosxr-config, we need to pass an end to config terminal session but also pass exit so we exit admin mode.
This commit is contained in:
parent
d7f3d3b867
commit
56c5567912
1 changed files with 2 additions and 0 deletions
|
@ -426,6 +426,8 @@ def load_config(module, command_filter, commit=False, replace=False,
|
|||
elif commit:
|
||||
commit_config(module, comment=comment)
|
||||
conn.edit_config('end')
|
||||
if admin:
|
||||
conn.edit_config('exit')
|
||||
else:
|
||||
conn.discard_changes()
|
||||
|
||||
|
|
Loading…
Reference in a new issue