Skip to content

Commit

Permalink
Merge pull request #400 from techtino/master
Browse files Browse the repository at this point in the history
Update setenv.sh.epp if statement to work with service desk
  • Loading branch information
bastelfreak authored Apr 27, 2022
2 parents 6fb7fb9 + d0041b0 commit 2cceea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/setenv.sh.epp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ JVM_CODE_CACHE_ARGS='<%= pick_default($jira::jvm_code_cache_args, $jira::config:
#
# The following are the required arguments for Jira.
#
<%- if versioncmp($jira::version, '8.11.0') > 0 { -%>
<%- if ($jira::product != "servicedesk" and versioncmp($jira::version, '8.11.0') > 0) or ($jira::product == "servicedesk" and (versioncmp($jira::version, '4.11.0') > 0)){ -%>
JVM_REQUIRED_ARGS='-Djava.awt.headless=true -Datlassian.standalone=JIRA -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true -Dmail.mime.decodeparameters=true -Dorg.dom4j.factory=com.atlassian.core.xml.InterningDocumentFactory'
<% } else { -%>
JVM_REQUIRED_ARGS='-Djava.awt.headless=true -Datlassian.standalone=JIRA -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true -Dmail.mime.decodeparameters=true'
Expand Down

0 comments on commit 2cceea2

Please sign in to comment.