diff options
-rw-r--r-- | debian/changelog | 10 | ||||
-rwxr-xr-x | nagios-plugins/check_kernel_status | 3 |
2 files changed, 8 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index 1f0a514..054cbf6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,16 +1,18 @@ -sitesummary (0.0.68+nmu1) UNRELEASED; urgency=low +sitesummary (0.0.69) unstable; urgency=low [ Andreas B. Mundt ] - * Add '-w' and 'use strict;' to nagios-plugins/check_kernel_status. - Modify code to get rid of warnings (i.e. add 'my'). + * Add 'use warnings;' and 'use strict;' to + nagios-plugins/check_kernel_status. Modify code to get rid of + warnings (i.e. add 'my'). [ Petter Reinholdtsen ] * Make Nagios configuration for the CUPS check more robust. Require both cups and cups-client packages installed to enable it. * Change Standards-Version from 3.9.1 to 3.9.2. No changes needed. * Add Catalan translation from Sergi Casbas (Closes: #609714). + * foo - -- Andreas B. Mundt <andi.mundt@web.de> Thu, 16 Jun 2011 20:33:54 +0200 + -- Petter Reinholdtsen <pere@debian.org> Mon, 14 Nov 2011 11:31:08 +0100 sitesummary (0.0.68) unstable; urgency=low diff --git a/nagios-plugins/check_kernel_status b/nagios-plugins/check_kernel_status index bee9dfe..cd1c96d 100755 --- a/nagios-plugins/check_kernel_status +++ b/nagios-plugins/check_kernel_status @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl # check_kernel_status : check if the running kernel is the latest installed # By Toni Van Remortel [toni.van.remortel@p-ops.be] # 2008-07-28 @@ -7,6 +7,7 @@ # http://www.monitoringexchange.org/attachment/download/Check-Plugins/Operating-Systems/Linux/Running-kernel-compared-to-installed-kernel-version/check_kernel_status use strict; +use warnings; my $OK = 0; my $WARN = 1; |