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 0daea08f authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

fixed device update check use version instead of image

parent 9a0eb611
No related branches found
No related tags found
No related merge requests found
......@@ -25,3 +25,4 @@
changed to load settings from config file (open-pnp.toml by default) in the SETTINGS.__init__
don't exit if cfg_file not found (not strictly needed, can all set viy cli), just print a warning
fixed: --config-file option (was cfg_file instead of config-file)
2023-04-17: fixed device update check use version instead of image
......@@ -57,4 +57,9 @@ version = "15.2(7)E7"
md5 = "11f9750e99be42792eddef7268e58e54"
size = 16260096
models = ["WS-C2960L-24TS-LL"]
\ No newline at end of file
["c2960s-universalk9-mz.152-2.E9.bin"]
version = "15.2(2)E9"
md5 = "EA604D030B378B6C5C3DDA3D501AC2F5"
size = 16800768
models = ["WS-C2960S-F48TS-L", "WS-C2960S-F24TS-L"]
\ No newline at end of file
......@@ -41,7 +41,7 @@
# 2023-32-07: changed '_' in cli options to '-' -> better readable/more bash like
# 2023-03-13: added '--no-default-cfg' option
# 2023-04-11: added flask options to remove whitespaces by default, changed version format (major.minor.micro-date)
# 2023-04-17: fixed device update check use version instead of image
#
# pip install flask xmltodict requests ifaddr tomli
#
......@@ -268,7 +268,7 @@ def update_device_info(data: Dict[str, Any]):
udi = data['pnp']['@udi']
device = devices[udi]
device.version = data['pnp']['response']['imageInfo']['versionString']
device.version = data['pnp']['response']['imageInfo']['versionString'].strip()
device.image = data['pnp']['response']['imageInfo']['imageFile'].split(':')[1]
device.refresh_data = False
device.last_contact = strftime(SETTINGS.time_format)
......@@ -284,7 +284,7 @@ def update_device_info(data: Dict[str, Any]):
def check_update(udi: str):
device = devices[udi]
if device.image == device.target_image.image:
if device.version == device.target_image.version:
device.pnp_flow = PNPFLOW.UPDATE_DOWN
else:
device.pnp_flow = PNPFLOW.UPDATE_NEEDED
......
......@@ -35,6 +35,7 @@ class ErrorCodes:
1816: 'Error verifying checksum for Image',
1829: 'Image copy was unsuccessful',
1803: 'Source file not found',
1817: 'Running Image checksum same as provided checksum. Upgrade not needed',
}
def __init__(self):
......@@ -52,6 +53,7 @@ class ErrorCodes:
self.PNP_ERROR_BAD_CHECKSUM = 1816
self.PNP_ERROR_IMAGE_COPY_UNSUCCESSFUL = 1829
self.PNP_ERROR_FILE_NOT_FOUND = 1803
self.PNP_ERROR_MD5_IDENTICAL = 1817
def readable(self, error_code: int):
return self.__readable.get(error_code, f'unknown: {error_code}')
......
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