diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2012-04-29 17:21:14 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2012-04-29 17:21:14 +0000 |
commit | a0f473f5e96ac92247e18eb082c05474689e2f82 (patch) | |
tree | 665b3a530aac729fdfcc0ad2391d79a1ac5715a6 /nagios-plugins | |
parent | 373962050eaf076635fa2b0c7717a2a69bfd9572 (diff) | |
download | sitesummary-a0f473f5e96ac92247e18eb082c05474689e2f82.tar.gz sitesummary-a0f473f5e96ac92247e18eb082c05474689e2f82.tar.bz2 sitesummary-a0f473f5e96ac92247e18eb082c05474689e2f82.tar.xz |
Add support in check_kernel_version for any 3.X kernel.
Diffstat (limited to 'nagios-plugins')
-rwxr-xr-x | nagios-plugins/check_kernel_status | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nagios-plugins/check_kernel_status b/nagios-plugins/check_kernel_status index 59bbc49..0721f5c 100755 --- a/nagios-plugins/check_kernel_status +++ b/nagios-plugins/check_kernel_status @@ -58,14 +58,14 @@ else } # Next, find the installed kernel version -# Yes, as you can see, it is limited to 2.6 and 3.0 kernels here. +# Yes, as you can see, it is limited to 2.6 and 3.X kernels here. # But I assume that you don't need reboots anymore when this major # version has passed. my $dpkg_list = `COLUMNS=1024 dpkg -l`; my $dpkg; for my $line (split("\n", $dpkg_list)) { chomp $line; - $dpkg = $line if ($line =~ m/^ii.+linux-image-(2.6|3.0)/); + $dpkg = $line if ($line =~ m/^ii.+linux-image-(2.6|3.\d)/); } # Now, which OS is it, and which footprint do they use? |