File tree 3 files changed +24
-2
lines changed
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ WORKDIR ${EXIST_HOME}
34
34
ADD http://exist-db.org/exist/apps/public-repo/public/functx-1.0.1.xar ${EXIST_HOME}/autodeploy/
35
35
36
36
# adding the entrypoint script and XML catalog
37
- COPY entrypoint.sh catalog.xml ${EXIST_HOME}/
37
+ COPY entrypoint.sh catalog.xml getopt-settings.eXist4.patch ${EXIST_HOME}/
38
38
COPY configure_9_3.dtd /etc/
39
39
40
40
# adding some scripts/configuration files for fine tuning
@@ -47,7 +47,7 @@ COPY xml-resolver-1.2.jar ${EXIST_HOME}/lib/
47
47
# main installation put into one RUN to squeeze image size
48
48
RUN apt-get update \
49
49
&& apt-get dist-upgrade -y \
50
- && apt-get install -y --no-install-recommends curl pwgen zip \
50
+ && apt-get install -y --no-install-recommends curl pwgen zip patch \
51
51
&& echo "INSTALL_PATH=${EXIST_HOME}" > "/tmp/options.txt" \
52
52
&& echo "MAX_MEMORY=${MAX_MEMORY}" >> "/tmp/options.txt" \
53
53
&& echo "dataDir=${EXIST_DATA_DIR}" >> "/tmp/options.txt" \
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ ${SAXON} -s:${EXIST_HOME}/webapp/WEB-INF/controller-config.xml -o:/tmp/controlle
43
43
${SAXON} -s:${EXIST_HOME} /webapp/WEB-INF/web.xml -o:/tmp/web.xml
44
44
${SAXON} -s:${EXIST_HOME} /log4j2.xml -o:/tmp/log4j2.xml
45
45
46
+ # patch bin/functions.d/getopt-settings.sh
47
+ patch --silent ${EXIST_HOME} /bin/functions.d/getopt-settings.sh ${EXIST_HOME} /getopt-settings.eXist4.patch
48
+
46
49
# copying modified configuration files from tmp folder to original destination
47
50
mv /tmp/conf.xml ${EXIST_HOME} /conf.xml
48
51
mv /tmp/exist-webapp-context.xml ${EXIST_HOME} /tools/jetty/webapps/exist-webapp-context.xml
Original file line number Diff line number Diff line change
1
+ --- getopt-settings.sh 2024-10-13 17:39:07
2
+ +++ getopt-settings.new 2025-01-22 13:43:11
3
+ @@ -90,14 +90,14 @@
4
+ continue
5
+ fi
6
+
7
+ - if [ $OPT == "--forking" ]; then
8
+ + if [[ $OPT == "--forking" ]]; then
9
+ FORKING=1
10
+ continue
11
+ fi
12
+
13
+ if is_jmx_switch "$OPT"; then
14
+ found_jmx_opt=1
15
+ - elif [ $OPT == "--pidfile" ]; then
16
+ + elif [[ $OPT == "--pidfile" ]]; then
17
+ found_pidfile_opt=1
18
+ else
19
+ check_quiet_switch "$OPT";
You can’t perform that action at this time.
0 commit comments