Index: head/databases/puppetdb-terminus7/Makefile =================================================================== --- head/databases/puppetdb-terminus7/Makefile (nonexistent) +++ head/databases/puppetdb-terminus7/Makefile (revision 557023) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= puppetdb-terminus +PORTVERSION= 6.13.1 +CATEGORIES= databases ruby +MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/ +PKGNAMESUFFIX= 6 +DISTNAME= puppetdb-${PORTVERSION} + +MAINTAINER= puppet@FreeBSD.org +COMMENT= PuppetDB storeconfigs backend terminus module + +LICENSE= APACHE20 + +BUILD_DEPENDS= puppet6>=0:sysutils/puppet6 + +CONFLICTS_INSTALL= puppetdb-terminus4-* puppetdb-terminus5-* +USE_RUBY= yes +NO_BUILD= yes +USES= gmake + +post-patch: + @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile + +do-install: + @cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} ${GMAKE} install-puppetdb-termini + +.include Property changes on: head/databases/puppetdb-terminus7/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb-terminus7/distinfo =================================================================== --- head/databases/puppetdb-terminus7/distinfo (nonexistent) +++ head/databases/puppetdb-terminus7/distinfo (revision 557023) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604551624 +SHA256 (puppetdb-6.13.1.tar.gz) = ee72627dcc2b79b04f10d3e077bde77feb5e7bc7611f5788e373e5ab85b4da42 +SIZE (puppetdb-6.13.1.tar.gz) = 46404282 Property changes on: head/databases/puppetdb-terminus7/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb-terminus7/files/patch-Makefile =================================================================== --- head/databases/puppetdb-terminus7/files/patch-Makefile (nonexistent) +++ head/databases/puppetdb-terminus7/files/patch-Makefile (revision 557023) @@ -0,0 +1,62 @@ +--- Makefile.orig ++++ Makefile +@@ -1,7 +1,7 @@ + prefix = /usr/local + datadir = $(prefix)/share + confdir = /etc +-rubylibdir = $(shell ruby -rrbconfig -e "puts RbConfig::CONFIG['sitelibdir']") ++rubylibdir = $(shell %%PREFIX%%/bin/ruby -rrbconfig -e "puts RbConfig::CONFIG['sitelibdir']") + rundir = /var/run + bindir = /usr/bin + +@@ -34,22 +34,34 @@ + + + install-puppetdb-termini: +- install -Dm 0644 puppet/face/node/deactivate.rb "$(DESTDIR)$(rubylibdir)/puppet/face/node/deactivate.rb" +- install -Dm 0644 puppet/face/node/status.rb "$(DESTDIR)$(rubylibdir)/puppet/face/node/status.rb" +- install -Dm 0644 puppet/functions/puppetdb_query.rb "$(DESTDIR)$(rubylibdir)/puppet/functions/puppetdb_query.rb" +- install -Dm 0644 puppet/indirector/catalog/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/catalog/puppetdb.rb" +- install -Dm 0644 puppet/indirector/facts/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/facts/puppetdb.rb" +- install -Dm 0644 puppet/indirector/facts/puppetdb_apply.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/facts/puppetdb_apply.rb" +- install -Dm 0644 puppet/indirector/node/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/node/puppetdb.rb" +- install -Dm 0644 puppet/indirector/resource/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/resource/puppetdb.rb" +- install -Dm 0644 puppet/reports/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/reports/puppetdb.rb" +- install -Dm 0644 puppet/util/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb.rb" +- install -Dm 0644 puppet/util/puppetdb/atom.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/atom.rb" +- install -Dm 0644 puppet/util/puppetdb/char_encoding.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/char_encoding.rb" +- install -Dm 0644 puppet/util/puppetdb/command.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/command.rb" +- install -Dm 0644 puppet/util/puppetdb/command_names.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/command_names.rb" +- install -Dm 0644 puppet/util/puppetdb/config.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/config.rb" +- install -Dm 0644 puppet/util/puppetdb/http.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/http.rb" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/face" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/face/node" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/functions" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/indirector" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/indirector/catalog" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/indirector/facts" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/indirector/node" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/indirector/resource" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/reports" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/util" ++ install -d -m 0755 "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb" ++ install -m 0644 puppet/face/node/deactivate.rb "$(DESTDIR)$(rubylibdir)/puppet/face/node/deactivate.rb" ++ install -m 0644 puppet/face/node/status.rb "$(DESTDIR)$(rubylibdir)/puppet/face/node/status.rb" ++ install -m 0644 puppet/functions/puppetdb_query.rb "$(DESTDIR)$(rubylibdir)/puppet/functions/puppetdb_query.rb" ++ install -m 0644 puppet/indirector/catalog/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/catalog/puppetdb.rb" ++ install -m 0644 puppet/indirector/facts/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/facts/puppetdb.rb" ++ install -m 0644 puppet/indirector/facts/puppetdb_apply.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/facts/puppetdb_apply.rb" ++ install -m 0644 puppet/indirector/node/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/node/puppetdb.rb" ++ install -m 0644 puppet/indirector/resource/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/indirector/resource/puppetdb.rb" ++ install -m 0644 puppet/reports/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/reports/puppetdb.rb" ++ install -m 0644 puppet/util/puppetdb.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb.rb" ++ install -m 0644 puppet/util/puppetdb/atom.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/atom.rb" ++ install -m 0644 puppet/util/puppetdb/char_encoding.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/char_encoding.rb" ++ install -m 0644 puppet/util/puppetdb/command.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/command.rb" ++ install -m 0644 puppet/util/puppetdb/command_names.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/command_names.rb" ++ install -m 0644 puppet/util/puppetdb/config.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/config.rb" ++ install -m 0644 puppet/util/puppetdb/http.rb "$(DESTDIR)$(rubylibdir)/puppet/util/puppetdb/http.rb" + + install-rpm-sysv-init: install-rpm-preinst + install -d -m 0755 "$(DESTDIR)$(initdir)" Property changes on: head/databases/puppetdb-terminus7/files/patch-Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb-terminus7/pkg-plist =================================================================== --- head/databases/puppetdb-terminus7/pkg-plist (nonexistent) +++ head/databases/puppetdb-terminus7/pkg-plist (revision 557023) @@ -0,0 +1,17 @@ +%%RUBY_SITELIBDIR%%/puppet/face/node/deactivate.rb +%%RUBY_SITELIBDIR%%/puppet/face/node/status.rb +%%RUBY_SITELIBDIR%%/puppet/functions/puppetdb_query.rb +%%RUBY_SITELIBDIR%%/puppet/indirector/catalog/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/indirector/facts/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/indirector/facts/puppetdb_apply.rb +%%RUBY_SITELIBDIR%%/puppet/indirector/node/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/indirector/resource/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/reports/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/atom.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/char_encoding.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/command.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/command_names.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/config.rb +%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/http.rb + Property changes on: head/databases/puppetdb-terminus7/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb-terminus7/pkg-descr =================================================================== --- head/databases/puppetdb-terminus7/pkg-descr (nonexistent) +++ head/databases/puppetdb-terminus7/pkg-descr (revision 557023) @@ -0,0 +1,3 @@ +The PuppetDB storeconfigs backend terminus module. + +WWW: https://docs.puppetlabs.com/puppetdb/latest/ Property changes on: head/databases/puppetdb-terminus7/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/Makefile =================================================================== --- head/databases/puppetdb7/Makefile (nonexistent) +++ head/databases/puppetdb7/Makefile (revision 557023) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= puppetdb +PORTVERSION= 6.13.1 +CATEGORIES= databases java +MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/ +PKGNAMESUFFIX= 6 + +MAINTAINER= puppet@FreeBSD.org +COMMENT= PuppetDB storeconfigs backend + +LICENSE= APACHE20 + +RUN_DEPENDS= bash:shells/bash + +USE_RC_SUBR= puppetdb + +CONFLICTS_INSTALL= puppetdb4-* puppetdb5-* +USES= shebangfix +SHEBANG_FILES= ext/bin/puppetdb \ + ext/cli/anonymize \ + ext/cli/config-migration \ + ext/cli/foreground \ + ext/cli/ssl-setup \ + ext/cli/start \ + ext/cli/stop \ + ext/cli/reload \ + ext/cli/upgrade \ + ext/ezbake-functions.sh +USE_JAVA= yes +NO_ARCH= yes +NO_BUILD= yes + +USERS= puppetdb +GROUPS= puppetdb + +SUB_LIST= JAVA_HOME=${JAVA_HOME} +SUB_FILES= pkg-message + +post-patch: +.for file in Makefile ext/bin/puppetdb ext/cli/ssl-setup \ + ext/config/conf.d/jetty.ini ext/config/conf.d/config.ini + @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file} +.endfor + @${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" ${WRKSRC}/ext/bin/puppetdb + +do-install: + @cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} make install-puppetdb + +.include Property changes on: head/databases/puppetdb7/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/distinfo =================================================================== --- head/databases/puppetdb7/distinfo (nonexistent) +++ head/databases/puppetdb7/distinfo (revision 557023) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604551611 +SHA256 (puppetdb-6.13.1.tar.gz) = ee72627dcc2b79b04f10d3e077bde77feb5e7bc7611f5788e373e5ab85b4da42 +SIZE (puppetdb-6.13.1.tar.gz) = 46404282 Property changes on: head/databases/puppetdb7/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/pkg-plist =================================================================== --- head/databases/puppetdb7/pkg-plist (nonexistent) +++ head/databases/puppetdb7/pkg-plist (revision 557023) @@ -0,0 +1,22 @@ +bin/puppetdb +%%DATADIR%%/cli/apps/anonymize +%%DATADIR%%/cli/apps/config-migration +%%DATADIR%%/cli/apps/delete-reports +%%DATADIR%%/cli/apps/foreground +%%DATADIR%%/cli/apps/ssl-setup +%%DATADIR%%/cli/apps/start +%%DATADIR%%/cli/apps/stop +%%DATADIR%%/cli/apps/reload +%%DATADIR%%/cli/apps/upgrade +%%DATADIR%%/ezbake-functions.sh +%%DATADIR%%/ezbake.manifest +%%DATADIR%%/puppetdb.jar +@group puppetdb +@sample etc/puppetdb/bootstrap.cfg.sample +@sample etc/puppetdb/conf.d/config.ini.sample +@sample etc/puppetdb/conf.d/database.ini.sample +@sample etc/puppetdb/conf.d/jetty.ini.sample +@sample etc/puppetdb/conf.d/repl.ini.sample +@sample etc/puppetdb/logback.xml.sample +@sample etc/puppetdb/request-logging.xml.sample +@group Property changes on: head/databases/puppetdb7/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/files/pkg-message.in =================================================================== --- head/databases/puppetdb7/files/pkg-message.in (nonexistent) +++ head/databases/puppetdb7/files/pkg-message.in (revision 557023) @@ -0,0 +1,12 @@ +[ +{ type: install + message: < + + +- /var/log/puppetlabs/puppetdb/puppetdb.log ++ /var/log/puppetdb/puppetdb.log + true + +- /var/log/puppetlabs/puppetdb/puppetdb-%d{yyyy-MM-dd}.%i.log.gz ++ /var/log/puppetdb/puppetdb-%d{yyyy-MM-dd}.%i.log.gz + + 200MB + 90 +@@ -31,11 +31,11 @@ + level="info"/> + + +- /var/log/puppetlabs/puppetdb/puppetdb-status.log ++ /var/log/puppetdb/puppetdb-status.log + true + + +- /var/log/puppetlabs/puppetdb/puppetdb-status-%d{yyyy-MM-dd}.%i.log.gz ++ /var/log/puppetdb/puppetdb-status-%d{yyyy-MM-dd}.%i.log.gz + + 200MB + 90 Property changes on: head/databases/puppetdb7/files/patch-ext_config_logback.xml ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +* \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: head/databases/puppetdb7/files/patch-ext_config_request-logging.xml =================================================================== --- head/databases/puppetdb7/files/patch-ext_config_request-logging.xml (nonexistent) +++ head/databases/puppetdb7/files/patch-ext_config_request-logging.xml (revision 557023) @@ -0,0 +1,14 @@ +--- ext/config/request-logging.xml.orig 2017-04-24 12:32:16.604464262 -0700 ++++ ext/config/request-logging.xml 2017-04-24 12:32:46.404637027 -0700 +@@ -1,9 +1,9 @@ + + +- /var/log/puppetlabs/puppetdb/puppetdb-access.log ++ /var/log/puppetdb/puppetdb-access.log + true + +- /var/log/puppetlabs/puppetdb/puppetdb-access-%d{yyyy-MM-dd}.%i.log.gz ++ /var/log/puppetdb/puppetdb-access-%d{yyyy-MM-dd}.%i.log.gz + + 200MB + 90 Property changes on: head/databases/puppetdb7/files/patch-ext_config_request-logging.xml ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: head/databases/puppetdb7/files/patch-ext_bin_puppetdb =================================================================== --- head/databases/puppetdb7/files/patch-ext_bin_puppetdb (nonexistent) +++ head/databases/puppetdb7/files/patch-ext_bin_puppetdb (revision 557023) @@ -0,0 +1,15 @@ +--- ext/bin/puppetdb.orig 2016-03-17 04:17:10 UTC ++++ ext/bin/puppetdb +@@ -5,6 +5,12 @@ if [ -r "/etc/default/puppetdb" ] ; then + . /etc/default/puppetdb + elif [ -r "/etc/sysconfig/puppetdb" ] ; then + . /etc/sysconfig/puppetdb ++elif [ `uname` == "FreeBSD" ] ; then ++ CONFIG="%%PREFIX%%/etc/puppetdb/conf.d" ++ INSTALL_DIR="%%DATADIR%%" ++ JAVA_BIN="%%PREFIX%%/bin/java" ++ JAVA_ARGS="-Xmx192m" ++ USER="puppet" + elif [ `uname` == "OpenBSD" ] ; then + JAVA_BIN=$(javaPathHelper -c puppetdb) + JAVA_ARGS="-Xmx192m" Property changes on: head/databases/puppetdb7/files/patch-ext_bin_puppetdb ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/files/patch-ext_cli_ssl-setup =================================================================== --- head/databases/puppetdb7/files/patch-ext_cli_ssl-setup (nonexistent) +++ head/databases/puppetdb7/files/patch-ext_cli_ssl-setup (revision 557023) @@ -0,0 +1,11 @@ +--- ext/cli/ssl-setup.orig 2016-03-17 04:17:10 UTC ++++ ext/cli/ssl-setup +@@ -230,7 +230,7 @@ else + user=puppetdb + group=puppetdb + +- puppetdb_confdir="/etc/puppetlabs/puppetdb" ++ puppetdb_confdir="%%PREFIX%%/etc/puppetdb" + fi + + set -e Property changes on: head/databases/puppetdb7/files/patch-ext_cli_ssl-setup ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/files/patch-ext_config_conf.d_config.ini =================================================================== --- head/databases/puppetdb7/files/patch-ext_config_conf.d_config.ini (nonexistent) +++ head/databases/puppetdb7/files/patch-ext_config_conf.d_config.ini (revision 557023) @@ -0,0 +1,15 @@ +--- ext/config/conf.d/config.ini.orig 2016-03-17 04:17:06 UTC ++++ ext/config/conf.d/config.ini +@@ -3,10 +3,10 @@ + + [global] + # Store mq/db data in a custom directory +-vardir = /opt/puppetlabs/server/data/puppetdb ++vardir = /var/db/puppetdb + + # Use an external logback config file +-logging-config = /etc/puppetlabs/puppetdb/logback.xml ++logging-config = %%PREFIX%%/etc/puppetdb/logback.xml + + [command-processing] + # How many command-processing threads to use, defaults to (CPUs / 2) Property changes on: head/databases/puppetdb7/files/patch-ext_config_conf.d_config.ini ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/files/patch-ext_config_conf.d_jetty.ini =================================================================== --- head/databases/puppetdb7/files/patch-ext_config_conf.d_jetty.ini (nonexistent) +++ head/databases/puppetdb7/files/patch-ext_config_conf.d_jetty.ini (revision 557023) @@ -0,0 +1,8 @@ +--- ext/config/conf.d/jetty.ini.orig 2016-03-17 04:17:06 UTC ++++ ext/config/conf.d/jetty.ini +@@ -30,4 +30,4 @@ port = 8080 + + # Access logging configuration path. To turn off access logging + # comment out the line with `access-log-config=...` +-access-log-config = /etc/puppetlabs/puppetdb/request-logging.xml ++access-log-config = %%PREFIX%%/etc/puppetdb/request-logging.xml Property changes on: head/databases/puppetdb7/files/patch-ext_config_conf.d_jetty.ini ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/puppetdb7/pkg-descr =================================================================== --- head/databases/puppetdb7/pkg-descr (nonexistent) +++ head/databases/puppetdb7/pkg-descr (revision 557023) @@ -0,0 +1,3 @@ +The PuppetDB storeconfigs backend + +WWW: https://docs.puppetlabs.com/puppetdb/latest/ Property changes on: head/databases/puppetdb7/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property