summaryrefslogtreecommitdiffstats
path: root/hosts/jenkins/etc/init.d
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/jenkins/etc/init.d')
-rwxr-xr-xhosts/jenkins/etc/init.d/jenkins5
1 files changed, 5 insertions, 0 deletions
diff --git a/hosts/jenkins/etc/init.d/jenkins b/hosts/jenkins/etc/init.d/jenkins
index 2714eb13..4b266c45 100755
--- a/hosts/jenkins/etc/init.d/jenkins
+++ b/hosts/jenkins/etc/init.d/jenkins
@@ -92,6 +92,11 @@ check_tcp_port() {
#
do_start()
{
+ # java will store heap dumps here in case of OutOfMemoryError.
+ # delete old heap dumps when starting
+ rm -r "$JENKINS_HOME/heapDumps/" > /dev/null 2>&1 || true
+ mkdir -p "$JENKINS_HOME/heapDumps/"
+ chown ${JENKINS_USER}.${JENKINS_GROUP} "$JENKINS_HOME/heapDumps"
# the default location is /var/run/jenkins/jenkins.pid but the parent directory needs to be created
mkdir `dirname $PIDFILE` > /dev/null 2>&1 || true
chown $JENKINS_USER `dirname $PIDFILE`