Fix n3k separate to combined image upgrade (#37017) (#37055)

* Fix n3k separate to combined image upgrade

* Address review comments

(cherry picked from commit 51e8eab9db)
pull/37058/head
Trishna Guha 7 years ago committed by GitHub
parent bbf27efe06
commit f48d636500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -383,6 +383,7 @@ def build_install_cmd_set(issu, image, kick, type):
else:
commands.append(
'%s system %s kickstart %s' % (rootcmd, image, kick))
return commands
@ -452,7 +453,7 @@ def check_mode_nextgen(module, issu, image, kick=None):
# The system may be busy from the previous call to check_mode so loop
# until it's done.
data = check_install_in_progress(module, commands, opts)
if re.search(r'No install all data found', data['raw']):
if data['server_error']:
data['error'] = True
return data

Loading…
Cancel
Save