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.
pull/39951/head
Ricardo Carrillo Cruz 6 years ago committed by GitHub
parent d7f3d3b867
commit 56c5567912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save