Don't fail trying to read boot image without enable (#56126)
Also add a message when network_os_image can't be acquired.
This commit is contained in:
parent
fef1a10efc
commit
3d9da0c468
1 changed files with 9 additions and 4 deletions
|
@ -247,10 +247,15 @@ class Cliconf(CliconfBase):
|
||||||
|
|
||||||
device_info['network_os_hostname'] = data['hostname']
|
device_info['network_os_hostname'] = data['hostname']
|
||||||
|
|
||||||
|
try:
|
||||||
reply = self.get('bash timeout 5 cat /mnt/flash/boot-config')
|
reply = self.get('bash timeout 5 cat /mnt/flash/boot-config')
|
||||||
|
|
||||||
match = re.search(r'SWI=(.+)$', reply, re.M)
|
match = re.search(r'SWI=(.+)$', reply, re.M)
|
||||||
if match:
|
if match:
|
||||||
device_info['network_os_image'] = match.group(1)
|
device_info['network_os_image'] = match.group(1)
|
||||||
|
except AnsibleConnectionFailure:
|
||||||
|
# This requires enable mode to run
|
||||||
|
self._connection.queue_message('vvv', "Unable to gather network_os_image without enable mode")
|
||||||
|
|
||||||
return device_info
|
return device_info
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue