From owner-svn-ports-all@FreeBSD.ORG Sat Oct 20 12:58:18 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 113CB814; Sat, 20 Oct 2012 12:58:18 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E961D8FC12; Sat, 20 Oct 2012 12:58:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9KCwHkf031428; Sat, 20 Oct 2012 12:58:17 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9KCwH6x031425; Sat, 20 Oct 2012 12:58:17 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201210201258.q9KCwH6x031425@svn.freebsd.org> From: Lars Engels Date: Sat, 20 Oct 2012 12:58:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306178 - 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.14 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: Sat, 20 Oct 2012 12:58:18 -0000 Author: lme Date: Sat Oct 20 12:58:17 2012 New Revision: 306178 URL: http://svn.freebsd.org/changeset/ports/306178 Log: - Add an alias to `checkconfig': `configtest' The former is what is used in the upstream init script, the latter is commonly used in our rc scripts. - Bump PORTREVISION Suggested by: demon Feature safe: yes Modified: head/net-mgmt/icinga/Makefile head/net-mgmt/icinga/files/icinga.in Modified: head/net-mgmt/icinga/Makefile ============================================================================== --- head/net-mgmt/icinga/Makefile Sat Oct 20 10:54:10 2012 (r306177) +++ head/net-mgmt/icinga/Makefile Sat Oct 20 12:58:17 2012 (r306178) @@ -7,6 +7,7 @@ PORTNAME= icinga PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF Modified: head/net-mgmt/icinga/files/icinga.in ============================================================================== --- head/net-mgmt/icinga/files/icinga.in Sat Oct 20 10:54:10 2012 (r306177) +++ head/net-mgmt/icinga/files/icinga.in Sat Oct 20 12:58:17 2012 (r306178) @@ -29,7 +29,7 @@ load_rc_config "${name}" command="%%PREFIX%%/bin/icinga" command_args="-d" -extra_commands="reload checkconfig" +extra_commands="reload checkconfig configtest" pidfile="%%ICINGADIR%%/icinga.lock" icinga_user="%%ICINGAUSER%%" icinga_group="%%ICINGAGROUP%%" @@ -40,6 +40,7 @@ icinga_cmdfile="%%ICINGADIR%%/rw/${name} start_cmd="start_cmd" checkconfig_cmd="icinga_checkconfig verbose" +configtest_cmd="${checkconfig_cmd}" start_precmd="start_precmd" stop_postcmd="stop_postcmd" restart_precmd="icinga_checkconfig"