1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
###########################################
# Init settings for puppetserver
###########################################
# Modify this if you'd like to change the memory allocation, enable JMX, etc
JAVA_ARGS="-Xms1g -Xmx1g -Djruby.logger.class=com.puppetlabs.jruby_utils.jruby.Slf4jLogger"
# Modify this as you would JAVA_ARGS but for non-service related subcommands
JAVA_ARGS_CLI="${JAVA_ARGS_CLI:-}"
# Modify this if you'd like TrapperKeeper specific arguments
TK_ARGS=""
# These normally shouldn't need to be edited
INSTALL_DIR="/usr/share/puppetserver"
CONFIG="/etc/puppet/puppetserver/conf.d"
BOOTSTRAP_CONFIG="/etc/puppet/puppetserver/services.d"
# Prevent issue with non-C/English locales
# (see Debian bug #1063568)
LANG="C"
|