From 4e2d7d2aae7a3d726aeaa1acc6f705eb22ee37f3 Mon Sep 17 00:00:00 2001 From: Napsty Date: Sat, 29 Apr 2023 11:40:58 +0200 Subject: [PATCH] Bump version, changelog --- check_smart.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/check_smart.pl b/check_smart.pl index 7882761..c3b3f50 100755 --- a/check_smart.pl +++ b/check_smart.pl @@ -55,13 +55,16 @@ # Dec 16, 2021: Lorenz Kaestle - Bugfix when interface parameter was missing in combination with -g (6.12.2) # Apr 27, 2022: Claudio Kuenzler - Allow skip temperature check (--skip-temp-check) (6.13.0) # Apr 27, 2022: Peter Newman - Better handling of missing or non-executable smartctl command (6.13.0) +# Apr 29, 2023: Nick Bertrand - Show drive(s) causing UNKNOWN status using -g/--global check (6.14.0) +# Apr 29, 2023: Claudio Kuenzler - Add possibility to hide serial number (--hide-sn) (6.14.0) +# Apr 29, 2023: Claudio Kuenzler - Add default check on Load Cycle Count (ignore using --skip-load-cycles) (6.14.0) use strict; use Getopt::Long; use File::Basename qw(basename); my $basename = basename($0); -my $revision = '6.13.0'; +my $revision = '6.14.0'; # Standard Nagios return codes my %ERRORS=('OK'=>0,'WARNING'=>1,'CRITICAL'=>2,'UNKNOWN'=>3,'DEPENDENT'=>4);