diff options
author | Romain Tartière <romain@FreeBSD.org> | 2016-03-21 17:31:13 +0000 |
---|---|---|
committer | Romain Tartière <romain@FreeBSD.org> | 2016-03-21 17:31:13 +0000 |
commit | 652993190c9acdd4d3cac3070d01f5cc13ef22f5 (patch) | |
tree | fbd8ade0d3ecc0239a6422df09198814a533942d /sysutils | |
parent | 2a876b636bac136f814ef43b31d9160b4906c23a (diff) | |
download | ports-652993190c9acdd4d3cac3070d01f5cc13ef22f5.tar.gz ports-652993190c9acdd4d3cac3070d01f5cc13ef22f5.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/mcollective-service-agent/Makefile | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 51219e8fdd05..aeff79af1463 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -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 diff --git a/sysutils/mcollective-service-agent/Makefile b/sysutils/mcollective-service-agent/Makefile new file mode 100644 index 000000000000..57832d30e35a --- /dev/null +++ b/sysutils/mcollective-service-agent/Makefile @@ -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" |