diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-27 14:31:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-27 14:31:57 +0200 |
commit | 315ead533e3d4e67ce3908a13ebe5b75ef9060c4 (patch) | |
tree | b13a53cbace131ef2afedbd7697f724f9e674c0d /hosts/jenkins/etc/default | |
parent | 16a5099a82e9c12322e7bea561a5f43448b013d4 (diff) | |
download | jenkins.debian.net-315ead533e3d4e67ce3908a13ebe5b75ef9060c4.tar.xz |
move etc to hosts/jenkins/etc
Diffstat (limited to 'hosts/jenkins/etc/default')
-rw-r--r-- | hosts/jenkins/etc/default/jenkins | 66 | ||||
-rw-r--r-- | hosts/jenkins/etc/default/shorewall | 44 | ||||
-rw-r--r-- | hosts/jenkins/etc/default/shorewall6 | 44 |
3 files changed, 154 insertions, 0 deletions
diff --git a/hosts/jenkins/etc/default/jenkins b/hosts/jenkins/etc/default/jenkins new file mode 100644 index 00000000..744fca61 --- /dev/null +++ b/hosts/jenkins/etc/default/jenkins @@ -0,0 +1,66 @@ +# defaults for jenkins continuous integration server + +# pulled in from the init script; makes things easier. +NAME=jenkins + +# location of java +JAVA=/usr/bin/java + +# arguments to pass to java +#JAVA_ARGS="-Xmx512m" # + MaxPermSize is 128m normally +JAVA_ARGS="-Xmx2048m -XX:MaxPermSize=256m" +#JAVA_ARGS="-Djava.net.preferIPv4Stack=true" # make jenkins listen on IPv4 address + +PIDFILE=/var/run/jenkins/jenkins.pid + +# user and group to be invoked as (default to jenkins) +JENKINS_USER=jenkins +JENKINS_GROUP=jenkins + +# location of the jenkins war file +JENKINS_WAR=/usr/share/jenkins/jenkins.war + +# jenkins home location +JENKINS_HOME=/var/lib/jenkins + +# set this to false if you don't want Hudson to run by itself +# in this set up, you are expected to provide a servlet container +# to host jenkins. +RUN_STANDALONE=true + +# log location. this may be a syslog facility.priority +JENKINS_LOG=/var/log/jenkins/$NAME.log +#HUDSON_LOG=daemon.info + +# OS LIMITS SETUP +# comment this out to observe /etc/security/limits.conf +# this is on by default because http://github.com/jenkinsci/jenkins/commit/2fb288474e980d0e7ff9c4a3b768874835a3e92e +# reported that Ubuntu's PAM configuration doesn't include pam_limits.so, and as a result the # of file +# descriptors are forced to 1024 regardless of /etc/security/limits.conf +MAXOPENFILES=8192 + +# set the umask to control permission bits of files that Jenkins creates. +# 027 makes files read-only for group and inaccessible for others. comment this out to inherit setting +# (as of Ubuntu 12.04, by default umask comes from pam_umask(8) and /etc/login.defs +UMASK=022 + +# port for HTTP connector (default 8080; disable with -1) +HTTP_PORT=8080 + +# port for AJP connector (disabled by default) +AJP_PORT=-1 + +# servlet context, important if you want to use apache proxying +PREFIX=/jenkins + +# arguments to pass to jenkins. +# --javahome=$JAVA_HOME +# --httpPort=$HTTP_PORT (default 8080; disable with -1) +# --httpsPort=$HTTP_PORT +# --ajp13Port=$AJP_PORT +# --argumentsRealm.passwd.$ADMIN_USER=[password] +# --argumentsRealm.roles.$ADMIN_USER=admin +# --webroot=~/.jenkins/war +# --prefix=$PREFIX + +JENKINS_ARGS="--webroot=/var/cache/jenkins/war --httpPort=$HTTP_PORT --ajp13Port=$AJP_PORT" diff --git a/hosts/jenkins/etc/default/shorewall b/hosts/jenkins/etc/default/shorewall new file mode 100644 index 00000000..9dfed2f8 --- /dev/null +++ b/hosts/jenkins/etc/default/shorewall @@ -0,0 +1,44 @@ +# prevent startup with default configuration +# set the following varible to 1 in order to allow Shorewall to start + +startup=1 + +# If your Shorewall configuration requires detection of the ip address of a ppp +# interface, you must list such interfaces in "wait_interface" to get Shorewall +# to wait until the interface is configured. Otherwise the script will fail +# because it won't be able to detect the IP address. +# +# Example: +# wait_interface="ppp0" +# or +# wait_interface="ppp0 ppp1" +# or, if you have defined in /etc/shorewall/params +# wait_interface= + +# +# Global start/restart/stop options +# +OPTIONS="" + +# +# Start options +# +STARTOPTIONS="" + +# +# Restart options +# +RESTARTOPTIONS="" + +# +# Init Log -- if /dev/null, use the STARTUP_LOG defined in shorewall.conf +# +INITLOG=/dev/null + +# +# Set this to 1 to cause '/etc/init.d/shorewall stop' to place the firewall in +# a safe state rather than to open it +# +SAFESTOP=0 + +# EOF diff --git a/hosts/jenkins/etc/default/shorewall6 b/hosts/jenkins/etc/default/shorewall6 new file mode 100644 index 00000000..babe9782 --- /dev/null +++ b/hosts/jenkins/etc/default/shorewall6 @@ -0,0 +1,44 @@ +# prevent startup with default configuration +# set the following varible to 1 in order to allow Shorewall6 to start + +startup=1 + +# if your Shorewall6 configuration requires detection of the ip address of a +# ppp interface, you must list such interfaces in "wait_interface" to get +# Shorewall6 to wait until the interface is configured. Otherwise the script +# will fail because it won't be able to detect the IP address. +# +# Example: +# wait_interface="ppp0" +# or +# wait_interface="ppp0 ppp1" +# or, if you have defined in /etc/shorewall6/params +# wait_interface= + +# +# Startup options +# +OPTIONS="" + +# +# Start options +# +STARTOPTIONS="" + +# +# Restart options +# +RESTARTOPTIONS="" + +# +# Init Log -- if /dev/null, use the STARTUP_LOG defined in shorewall.conf +# +INITLOG=/dev/null + +# +# Set this to 1 to cause '/etc/init.d/shorewall6 stop' to place the firewall in +# a safe state rather than to open it +# +SAFESTOP=0 + +# EOF |