Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 0ab4373a authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

fixed md5 not lower case

parent ff2d42d9
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ class ErrorCodes:
103: 'config file not found',
104: 'image file not found',
1412: ' Invalid input detected (config)',
1412: 'Invalid input detected (config)',
1413: 'Invalid input detected',
1609: 'Error while retrieving device filesystem info',
1816: 'Error verifying checksum for Image',
......@@ -340,7 +340,7 @@ def pnp_install_image(udi: str, correlator: str) -> Optional[str]:
'correlator': correlator,
'base_url': IMAGE_BASE_URL,
'image': device.target_image.image,
'md5': device.target_image.md5,
'md5': device.target_image.md5.lower(),
'destination': device.destination_name,
'delay': 0, # reload in seconds
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment