mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
c578b3cbaa
In case you want to have an automated import of your Virtual Machines and/or Physical Host from VMware Sphere (vCenter) into your Icinga monitoring system this module might be what you have been looking for. At the time of this writing, the main purpose of this module is being a Import Source provider for the Icinga Director. WWW: https://github.com/Icinga/icingaweb2-module-vsphere
30 lines
646 B
Makefile
30 lines
646 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= icingaweb2-module-vsphere
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.1.0
|
|
CATEGORIES= net-mgmt www
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Automated import of your VMs and Physical Host from VMware Sphere
|
|
|
|
RUN_DEPENDS= icingaweb2>=2.4.1:net-mgmt/icingaweb2 \
|
|
${LOCALBASE}/www/icingaweb2/modules/director/run.php:net-mgmt/icingaweb2-module-director
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= icinga
|
|
|
|
USES_PHP= posix soap
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
WWWDIR?= ${PREFIX}/www/icingaweb2/modules/${PORTNAME:C/^.*-//}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|