From afa0be04bf85bb4a32099fba64d791590b834335 Mon Sep 17 00:00:00 2001 From: "ricardo.bartels@telekom.de" Date: Wed, 10 Jan 2024 16:17:19 +0100 Subject: [PATCH] prepare 1.7.0 release --- README.md | 2 +- check_redfish.py | 8 ++++---- cr_module/__init__.py | 2 +- cr_module/bmc.py | 2 +- cr_module/classes/__init__.py | 2 +- cr_module/classes/inventory.py | 2 +- cr_module/classes/plugin.py | 2 +- cr_module/classes/redfish.py | 2 +- cr_module/classes/vendor.py | 2 +- cr_module/common.py | 2 +- cr_module/event.py | 2 +- cr_module/fan.py | 2 +- cr_module/firmware.py | 2 +- cr_module/firmware_issues.py | 2 +- cr_module/mem.py | 2 +- cr_module/nic.py | 2 +- cr_module/power.py | 2 +- cr_module/proc.py | 2 +- cr_module/storage.py | 2 +- cr_module/system_chassi.py | 2 +- cr_module/temp.py | 2 +- 21 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 7744f75..16fe8ac 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ It will also create a inventory of all components of a system. R.I.P. IPMI -Version: 1.6.1 (2023-09-08) +Version: 1.7.0 (2024-01-10) mandatory arguments: -H HOST, --host HOST define the host to request. To change the port just diff --git a/check_redfish.py b/check_redfish.py index 842c86d..b4568b9 100755 --- a/check_redfish.py +++ b/check_redfish.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # @@ -16,9 +16,9 @@ R.I.P. IPMI """ -__version__ = "1.6.1" -__version_date__ = "2023-09-08" -__author__ = "Ricardo Bartels " +__version__ = "1.7.0" +__version_date__ = "2024-01-10" +__author__ = "Ricardo Bartels " __description__ = "Check Redfish Plugin" __license__ = "MIT" diff --git a/cr_module/__init__.py b/cr_module/__init__.py index cda0bbf..a62cc04 100644 --- a/cr_module/__init__.py +++ b/cr_module/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/bmc.py b/cr_module/bmc.py index 4bfd1ec..62ad8ce 100644 --- a/cr_module/bmc.py +++ b/cr_module/bmc.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/classes/__init__.py b/cr_module/classes/__init__.py index fa5d379..1e683c7 100644 --- a/cr_module/classes/__init__.py +++ b/cr_module/classes/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/classes/inventory.py b/cr_module/classes/inventory.py index c305199..14cef44 100644 --- a/cr_module/classes/inventory.py +++ b/cr_module/classes/inventory.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/classes/plugin.py b/cr_module/classes/plugin.py index 79a6f14..44941da 100644 --- a/cr_module/classes/plugin.py +++ b/cr_module/classes/plugin.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/classes/redfish.py b/cr_module/classes/redfish.py index 412ff2d..43fd19b 100644 --- a/cr_module/classes/redfish.py +++ b/cr_module/classes/redfish.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/classes/vendor.py b/cr_module/classes/vendor.py index 23eee66..c8207e2 100644 --- a/cr_module/classes/vendor.py +++ b/cr_module/classes/vendor.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/common.py b/cr_module/common.py index 44892eb..6672347 100644 --- a/cr_module/common.py +++ b/cr_module/common.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/event.py b/cr_module/event.py index 3ff9f17..5d6c9ef 100644 --- a/cr_module/event.py +++ b/cr_module/event.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/fan.py b/cr_module/fan.py index fe14aea..1be8e40 100644 --- a/cr_module/fan.py +++ b/cr_module/fan.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/firmware.py b/cr_module/firmware.py index c1b2424..9850652 100644 --- a/cr_module/firmware.py +++ b/cr_module/firmware.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/firmware_issues.py b/cr_module/firmware_issues.py index ae6dcd2..ca19804 100644 --- a/cr_module/firmware_issues.py +++ b/cr_module/firmware_issues.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/mem.py b/cr_module/mem.py index f31e3ca..0b7c677 100644 --- a/cr_module/mem.py +++ b/cr_module/mem.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/nic.py b/cr_module/nic.py index e0d7805..00d2544 100644 --- a/cr_module/nic.py +++ b/cr_module/nic.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/power.py b/cr_module/power.py index beff7bd..909c9ca 100644 --- a/cr_module/power.py +++ b/cr_module/power.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/proc.py b/cr_module/proc.py index 67e5667..3acbf98 100644 --- a/cr_module/proc.py +++ b/cr_module/proc.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/storage.py b/cr_module/storage.py index 9e5e7d4..3adb60a 100644 --- a/cr_module/storage.py +++ b/cr_module/storage.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/system_chassi.py b/cr_module/system_chassi.py index 597e7bb..618d9c0 100644 --- a/cr_module/system_chassi.py +++ b/cr_module/system_chassi.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py # diff --git a/cr_module/temp.py b/cr_module/temp.py index 215a6b2..1ced979 100644 --- a/cr_module/temp.py +++ b/cr_module/temp.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2024 Ricardo Bartels. All rights reserved. # # check_redfish.py #