From owner-svn-ports-head@freebsd.org Mon Mar 21 17:31:14 2016 Return-Path: Delivered-To: svn-ports-head@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 C4DBAAD7D5F; Mon, 21 Mar 2016 17:31:14 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 96BE2A99; Mon, 21 Mar 2016 17:31:14 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2LHVDHW053414; Mon, 21 Mar 2016 17:31:13 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2LHVDHx053412; Mon, 21 Mar 2016 17:31:13 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201603211731.u2LHVDHx053412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Mon, 21 Mar 2016 17:31:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411578 - in head/sysutils: . mcollective-service-agent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2016 17:31:14 -0000 Author: romain Date: Mon Mar 21 17:31:13 2016 New Revision: 411578 URL: https://svnweb.freebsd.org/changeset/ports/411578 Log: Add mcollective-service-agent , MCollective agent to manage the OS Services. Added: head/sysutils/mcollective-service-agent/ head/sysutils/mcollective-service-agent/Makefile (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Mar 21 17:30:31 2016 (r411577) +++ head/sysutils/Makefile Mon Mar 21 17:31:13 2016 (r411578) @@ -547,6 +547,7 @@ SUBDIR += mcollective-nettest-common SUBDIR += mcollective-nrpe-agent SUBDIR += mcollective-puppet-agent + SUBDIR += mcollective-service-agent SUBDIR += mcollective-service-common SUBDIR += mcollective-shell-agent SUBDIR += mcollective-shell-client Added: head/sysutils/mcollective-service-agent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mcollective-service-agent/Makefile Mon Mar 21 17:31:13 2016 (r411578) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= mcollective-service-agent + +COMMENT= MCollective agent to manage the OS Services + +# See MASTERDIR for MAINTAINER. + +RUN_DEPENDS= mcollective-service-common>=${PORTVERSION}:${PORTSDIR}/sysutils/mcollective-service-common + +MASTERDIR= ${.CURDIR}/../mcollective-service-common + +PLIST_FILES= share/mcollective/agent/service.rb + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} "agent/*.rb" ${STAGEDIR}${PREFIX}/share/mcollective + +.include "${MASTERDIR}/Makefile"