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/4420/head
Ricardo Carrillo Cruz 2018-05-10 10:36:37 +02:00 committed by GitHub
parent d7f3d3b867
commit 56c5567912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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()