Date: Fri, 15 Aug 2014 15:59:11 +0000 (UTC) From: Bartek Rutkowski <robak@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364987 - in head/sysutils: . mcollective-shell-client Message-ID: <201408151559.s7FFxBOt039021@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: robak Date: Fri Aug 15 15:59:11 2014 New Revision: 364987 URL: http://svnweb.freebsd.org/changeset/ports/364987 QAT: https://qat.redports.org/buildarchive/r364987/ Log: sysutils/mcollective-shell-client: NEW PORT - official MCollecive shell plugin client Submitted by: Bartek Rutkowski <robak@FreeBSD.org> Approved by: swills (mentor) Added: head/sysutils/mcollective-shell-client/ head/sysutils/mcollective-shell-client/Makefile (contents, props changed) head/sysutils/mcollective-shell-client/distinfo (contents, props changed) head/sysutils/mcollective-shell-client/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Aug 15 15:59:00 2014 (r364986) +++ head/sysutils/Makefile Fri Aug 15 15:59:11 2014 (r364987) @@ -505,6 +505,7 @@ SUBDIR += mcollective-nrpe-agent SUBDIR += mcollective-puppet-agent SUBDIR += mcollective-shell-agent + SUBDIR += mcollective-shell-client SUBDIR += mcron SUBDIR += mcweject SUBDIR += mdcp Added: head/sysutils/mcollective-shell-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mcollective-shell-client/Makefile Fri Aug 15 15:59:11 2014 (r364987) @@ -0,0 +1,37 @@ +# Created by: Bartek Rutkowski <robak@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= mcollective-shell-client +PORTVERSION= 0.0.1 +CATEGORIES= sysutils +DISTNAME= mcollective-shell-agent-${PORTVERSION} + +MAINTAINER= robak@FreeBSD.org +COMMENT= MCollective shell client plugin + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= mcollective>=2.2.4:${PORTSDIR}/sysutils/mcollective + +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-mcollective-shell-agent-${GH_COMMIT} + +USE_GITHUB= yes +GH_ACCOUNT= puppetlabs +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 9fb27d5 + +PLIST_FILES= share/mcollective/application/shell/watcher.rb \ + share/mcollective/application/shell/prefix_stream_buf.rb \ + share/mcollective/application/shell.rb +PLIST_DIRSTRY= share/mcollective/application/shell + +NO_BUILD= yes + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${PLIST_DIRSTRY} + ${INSTALL_DATA} ${WRKSRC}/lib/mcollective/application/shell/watcher.rb ${STAGEDIR}${PREFIX}/share/mcollective/application/shell/ + ${INSTALL_DATA} ${WRKSRC}/lib/mcollective/application/shell/prefix_stream_buf.rb ${STAGEDIR}${PREFIX}/share/mcollective/application/shell/ + ${INSTALL_DATA} ${WRKSRC}/lib/mcollective/application/shell.rb ${STAGEDIR}${PREFIX}/share/mcollective/application/ + +.include <bsd.port.mk> Added: head/sysutils/mcollective-shell-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mcollective-shell-client/distinfo Fri Aug 15 15:59:11 2014 (r364987) @@ -0,0 +1,2 @@ +SHA256 (mcollective-shell-agent-0.0.1.tar.gz) = c3e899ecf21508587091828f9e18ed232ca615f9f8a899d524f0b96340738d74 +SIZE (mcollective-shell-agent-0.0.1.tar.gz) = 17900 Added: head/sysutils/mcollective-shell-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mcollective-shell-client/pkg-descr Fri Aug 15 15:59:11 2014 (r364987) @@ -0,0 +1,9 @@ +The shell client allows you to get commands executed via MCollective's +mcollective-shell-agent plugin. + +It allows the running of long-running processes with a mechanism to check in +on the output from these long-running processes, which is independent of the +mcollective daemon process (the daemon can be restarted without interrupting +the processes) + +WWW: https://github.com/puppetlabs/mcollective-shell-agent
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408151559.s7FFxBOt039021>