diff options
author | Lars Engels <lme@FreeBSD.org> | 2016-08-05 16:20:14 +0000 |
---|---|---|
committer | Lars Engels <lme@FreeBSD.org> | 2016-08-05 16:20:14 +0000 |
commit | 47f0bc30ec4a10739d033dd0b306aff7219e83ea (patch) | |
tree | 7ab4d22832e20884c4557a51d5c16386a4c7105e | |
parent | e98b0edf6e4d9f12673e60b9a601d8eb5624ff22 (diff) |
Notes
-rw-r--r-- | net-mgmt/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/pnp-icinga2/Makefile | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index da1f1eb506da..55f8373ce6df 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -269,6 +269,7 @@ SUBDIR += pmacct SUBDIR += pnp SUBDIR += pnp-icinga + SUBDIR += pnp-icinga2 SUBDIR += portmon SUBDIR += py-flowtools SUBDIR += py-ipcalc diff --git a/net-mgmt/pnp-icinga2/Makefile b/net-mgmt/pnp-icinga2/Makefile new file mode 100644 index 000000000000..6592e8692496 --- /dev/null +++ b/net-mgmt/pnp-icinga2/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -icinga2 + +MAINTAINER= lme@FreeBSD.org +COMMENT= Icinga2 performance data collector and grapher + +MASTERDIR= ${.CURDIR}/../pnp + +RUN_DEPENDS= ${LOCALBASE}/bin/rrdtool:databases/rrdtool \ + ${LOCALBASE}/www/icingaweb2/public/index.php:net-mgmt/icingaweb2 + +NAGIOSDIR?= /var/spool/icinga2 +NAGIOSHTMURL?= /icingaweb2 +NAGIOSUSER?= icinga +NAGIOSGROUP?= icinga + +.include "${MASTERDIR}/Makefile" |