From owner-svn-ports-all@FreeBSD.ORG Thu Apr 10 21:08:04 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AC0D724; Thu, 10 Apr 2014 21:08:04 +0000 (UTC) Received: from svn.freebsd.org (svn.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 57D1C14EF; Thu, 10 Apr 2014 21:08:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3AL84Ru038219; Thu, 10 Apr 2014 21:08:04 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3AL84Rv038217; Thu, 10 Apr 2014 21:08:04 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201404102108.s3AL84Rv038217@svn.freebsd.org> From: Lars Engels Date: Thu, 10 Apr 2014 21:08:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350854 - in head/net-mgmt/icinga: . 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.17 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, 10 Apr 2014 21:08:04 -0000 Author: lme Date: Thu Apr 10 21:08:03 2014 New Revision: 350854 URL: http://svnweb.freebsd.org/changeset/ports/350854 QAT: https://qat.redports.org/buildarchive/r350854/ Log: - Fix creation of log directories in icinga's rc script - Bump PORTREVISION Modified: head/net-mgmt/icinga/Makefile head/net-mgmt/icinga/files/icinga.in Modified: head/net-mgmt/icinga/Makefile ============================================================================== --- head/net-mgmt/icinga/Makefile Thu Apr 10 20:57:50 2014 (r350853) +++ head/net-mgmt/icinga/Makefile Thu Apr 10 21:08:03 2014 (r350854) @@ -3,6 +3,7 @@ PORTNAME= icinga PORTVERSION= 1.11.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= https://github.com/Icinga/${PORTNAME}-core/releases/download/v${PORTVERSION}/ Modified: head/net-mgmt/icinga/files/icinga.in ============================================================================== --- head/net-mgmt/icinga/files/icinga.in Thu Apr 10 20:57:50 2014 (r350853) +++ head/net-mgmt/icinga/files/icinga.in Thu Apr 10 21:08:03 2014 (r350854) @@ -105,7 +105,7 @@ start_precmd() { "${icinga_logdir}" \ "${icinga_logdir}/archives"; do if [ ! -d "${d}" ]; then - install -d -o "${icinga_user}" -g "${icinga_group}" "${icinga_dir}"/checkresults + install -d -o "${icinga_user}" -g "${icinga_group}" "${d}" fi done