Skip to content

Commit 70d5ed3

Browse files
committed
bumps version to 1.11.0
1 parent eb65e79 commit 70d5ed3

2 files changed

Lines changed: 16 additions & 12 deletions

File tree

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ usage: check_redfish.py [-H HOST] [-u USERNAME] [-p PASSWORD] [-f AUTHFILE]
4141
[--nosession] [-h] [-w WARNING] [-c CRITICAL] [-v]
4242
[-d] [-m MAX] [-r RETRIES] [-t TIMEOUT]
4343
[--log_exclude LOG_EXCLUDE] [--ignore_missing_ps]
44+
[--ignore_unavailable_resources]
4445
[--enable_bmc_security_warning] [--storage] [--proc]
4546
[--memory] [--power] [--temp] [--fan] [--nic] [--bmc]
4647
[--info] [--firmware] [--sel] [--mel] [--all] [-i]
@@ -54,18 +55,18 @@ It will also create a inventory of all components of a system.
5455
5556
R.I.P. IPMI
5657
57-
Version: 1.10.0 (2025-01-17)
58+
Version: 1.11.0 (2025-02-21)
5859
5960
mandatory arguments:
60-
-H HOST, --host HOST define the host to request. To change the port just
61+
-H, --host HOST define the host to request. To change the port just
6162
add ':portnumber' to this parameter
6263
6364
authentication arguments:
64-
-u USERNAME, --username USERNAME
65+
-u, --username USERNAME
6566
the login user name
66-
-p PASSWORD, --password PASSWORD
67+
-p, --password PASSWORD
6768
the login password
68-
-f AUTHFILE, --authfile AUTHFILE
69+
-f, --authfile AUTHFILE
6970
authentication file with user name and password
7071
--sessionfile SESSIONFILE
7172
define name of session file
@@ -78,25 +79,28 @@ authentication arguments:
7879
7980
optional arguments:
8081
-h, --help show this help message and exit
81-
-w WARNING, --warning WARNING
82+
-w, --warning WARNING
8283
set warning value
83-
-c CRITICAL, --critical CRITICAL
84+
-c, --critical CRITICAL
8485
set critical value
8586
-v, --verbose this will add all https requests and responses to
8687
output, also adds inventory source data to all
8788
inventory objects
8889
-d, --detailed always print detailed result
89-
-m MAX, --max MAX set maximum of returned items for --sel or --mel
90-
-r RETRIES, --retries RETRIES
90+
-m, --max MAX set maximum of returned items for --sel or --mel
91+
-r, --retries RETRIES
9192
set number of maximum retries (default: 3)
92-
-t TIMEOUT, --timeout TIMEOUT
93+
-t, --timeout TIMEOUT
9394
set number of request timeout per try/retry (default:
9495
7)
9596
--log_exclude LOG_EXCLUDE
9697
a comma separated list of log lines (regex) to exclude
9798
from log status checks (--sel, --mel)
9899
--ignore_missing_ps ignore the fact that no power supplies are present and
99100
report the status of the power subsystem
101+
--ignore_unavailable_resources
102+
ignore all 'UNKNOWN' errors which indicate missing
103+
resources and report as OK
100104
--enable_bmc_security_warning
101105
return status WARNING if BMC security issues are
102106
detected (HPE iLO only)

check_redfish.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
R.I.P. IPMI
1717
"""
1818

19-
__version__ = "1.10.0"
20-
__version_date__ = "2025-01-17"
19+
__version__ = "1.11.0"
20+
__version_date__ = "2025-02-21"
2121
__author__ = "Ricardo Bartels <ricardo@bitchbrothers.com>"
2222
__description__ = "Check Redfish Plugin"
2323
__license__ = "MIT"

0 commit comments

Comments
 (0)