mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
Puppet master is a Ruby application that compiles configurations for any number of Puppet agent nodes, using Puppet code and various other data sources. (For more info, see Overview of Puppet's Architecture.) Puppet Server is an application that runs on the Java Virtual Machine (JVM) and provides the same services as the classic Puppet master application. It mostly does this by running the existing Puppet master code in several JRuby interpreters, but it replaces some parts of the classic application with new services written in Clojure.
12 lines
573 B
Bash
12 lines
573 B
Bash
--- ext/cli_defaults/cli-defaults.sh.orig 2019-09-17 14:05:56 UTC
|
|
+++ ext/cli_defaults/cli-defaults.sh
|
|
@@ -1,7 +1,7 @@
|
|
-INSTALL_DIR="/opt/puppetlabs/server/apps/puppetserver"
|
|
+INSTALL_DIR="%%DATADIR%%"
|
|
|
|
if [ -n "$JRUBY_JAR" ]; then
|
|
echo "Warning: the JRUBY_JAR setting is no longer needed and will be ignored." 1>&2
|
|
fi
|
|
|
|
-CLASSPATH="${CLASSPATH}:/opt/puppetlabs/puppet/lib/ruby/vendor_ruby/facter.jar:/opt/puppetlabs/server/data/puppetserver/jars/*"
|
|
+CLASSPATH="${CLASSPATH}:/usr/local/lib/ruby/vendor_ruby/facter.jar:/opt/puppetlabs/server/data/puppetserver/jars/*"
|