From owner-svn-ports-all@freebsd.org Thu Sep 3 23:18:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39CB79CA922; Thu, 3 Sep 2015 23:18:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AA70199E; Thu, 3 Sep 2015 23:18:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t83NI32Y010602; Thu, 3 Sep 2015 23:18:03 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t83NI2gc010600; Thu, 3 Sep 2015 23:18:02 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201509032318.t83NI2gc010600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 3 Sep 2015 23:18:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396052 - in head/net-mgmt/nagios-plugins: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2015 23:18:03 -0000 Author: mat Date: Thu Sep 3 23:18:02 2015 New Revision: 396052 URL: https://svnweb.freebsd.org/changeset/ports/396052 Log: Fix check_mailq. Noticed by: ohauer Sponsored by: Absolight Added: head/net-mgmt/nagios-plugins/files/patch-plugins-scripts_check__mailq.pl (contents, props changed) Modified: head/net-mgmt/nagios-plugins/Makefile Modified: head/net-mgmt/nagios-plugins/Makefile ============================================================================== --- head/net-mgmt/nagios-plugins/Makefile Thu Sep 3 23:14:50 2015 (r396051) +++ head/net-mgmt/nagios-plugins/Makefile Thu Sep 3 23:18:02 2015 (r396052) @@ -3,7 +3,7 @@ PORTNAME= nagios-plugins PORTVERSION= 2.1.1 -PORTREVISION= 0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net-mgmt MASTER_SITES= https://www.nagios-plugins.org/download/ \ Added: head/net-mgmt/nagios-plugins/files/patch-plugins-scripts_check__mailq.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/nagios-plugins/files/patch-plugins-scripts_check__mailq.pl Thu Sep 3 23:18:02 2015 (r396052) @@ -0,0 +1,11 @@ +--- plugins-scripts/check_mailq.pl.orig 2015-07-30 21:40:06 UTC ++++ plugins-scripts/check_mailq.pl +@@ -35,7 +35,7 @@ use FindBin; + use lib "$FindBin::Bin"; + use utils qw(%ERRORS &print_revision &support &usage ); + +-my ($sudo) ++my ($sudo); + + sub print_help (); + sub print_usage ();