From owner-svn-ports-head@freebsd.org Mon Mar 21 17:31:51 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 634D1AD7E94; Mon, 21 Mar 2016 17:31:51 +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 30446BED; Mon, 21 Mar 2016 17:31:51 +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 u2LHVoZI053600; Mon, 21 Mar 2016 17:31:50 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2LHVoqk053598; Mon, 21 Mar 2016 17:31:50 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201603211731.u2LHVoqk053598@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:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411579 - in head/sysutils: . mcollective-service-client 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:51 -0000 Author: romain Date: Mon Mar 21 17:31:49 2016 New Revision: 411579 URL: https://svnweb.freebsd.org/changeset/ports/411579 Log: Add mcollective-service-client , MCollective client to manage the OS Services. Added: head/sysutils/mcollective-service-client/ head/sysutils/mcollective-service-client/Makefile (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Mar 21 17:31:13 2016 (r411578) +++ head/sysutils/Makefile Mon Mar 21 17:31:49 2016 (r411579) @@ -548,6 +548,7 @@ SUBDIR += mcollective-nrpe-agent SUBDIR += mcollective-puppet-agent SUBDIR += mcollective-service-agent + SUBDIR += mcollective-service-client SUBDIR += mcollective-service-common SUBDIR += mcollective-shell-agent SUBDIR += mcollective-shell-client Added: head/sysutils/mcollective-service-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mcollective-service-client/Makefile Mon Mar 21 17:31:49 2016 (r411579) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= mcollective-service-client + +COMMENT= MCollective client 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/application/service.rb + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} "application/*" ${STAGEDIR}${PREFIX}/share/mcollective + +.include "${MASTERDIR}/Makefile"