ports/sysutils/puppetserver6/files/patch-ext__bin__puppetserver
Romain Tartière a5dd49995d Update to 6.0.1
Release notes:
https://puppet.com/docs/puppetserver/6.0/release_notes.html#puppet-server-601

While here, regenerate patches with make makepatch, and fix warnings in the
logs by pointing the server to ruby multi_json gem (quick fix for now, we will
have to improve this in the future).

With hat:	puppet
2018-10-03 16:58:29 +00:00

15 lines
627 B
Text

--- ext/bin/puppetserver.orig 2018-10-03 16:18:58 UTC
+++ ext/bin/puppetserver
@@ -15,6 +15,12 @@ elif [ `uname` == "OpenBSD" ] ; then
USER="_puppet"
INSTALL_DIR="/opt/puppetlabs/server/apps/puppetserver"
CONFIG="/etc/puppetlabs/puppetserver/conf.d"
+elif [ `uname` == "FreeBSD" ] ; then
+ JAVA_BIN="%%JAVA%%"
+ JAVA_ARGS="-Xms2g -Xmx2g -XX:MaxPermSize=256m"
+ USER="puppet"
+ INSTALL_DIR="%%DATADIR%%"
+ CONFIG="%%ETCDIR%%/conf.d"
else
echo "You seem to be missing some important configuration files; could not find /etc/default/puppetserver or /etc/sysconfig/puppetserver" >&2
exit 1