Skip to content

Commit c9eca46

Browse files
committed
patch bin/functions.d/getopt-settings.sh for eXist v4
to get rid of the error messages ```shell /opt/exist/bin/functions.d/getopt-settings.sh: line 93: [: ==: unary operator expected /opt/exist/bin/functions.d/getopt-settings.sh: line 100: [: ==: unary operator expected ```
1 parent 96f2c2c commit c9eca46

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ WORKDIR ${EXIST_HOME}
3434
ADD http://exist-db.org/exist/apps/public-repo/public/functx-1.0.1.xar ${EXIST_HOME}/autodeploy/
3535

3636
# 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}/
3838
COPY configure_9_3.dtd /etc/
3939

4040
# adding some scripts/configuration files for fine tuning
@@ -47,7 +47,7 @@ COPY xml-resolver-1.2.jar ${EXIST_HOME}/lib/
4747
# main installation put into one RUN to squeeze image size
4848
RUN apt-get update \
4949
&& 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 \
5151
&& echo "INSTALL_PATH=${EXIST_HOME}" > "/tmp/options.txt" \
5252
&& echo "MAX_MEMORY=${MAX_MEMORY}" >> "/tmp/options.txt" \
5353
&& echo "dataDir=${EXIST_DATA_DIR}" >> "/tmp/options.txt" \

entrypoint.sh

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ ${SAXON} -s:${EXIST_HOME}/webapp/WEB-INF/controller-config.xml -o:/tmp/controlle
4343
${SAXON} -s:${EXIST_HOME}/webapp/WEB-INF/web.xml -o:/tmp/web.xml
4444
${SAXON} -s:${EXIST_HOME}/log4j2.xml -o:/tmp/log4j2.xml
4545

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+
4649
# copying modified configuration files from tmp folder to original destination
4750
mv /tmp/conf.xml ${EXIST_HOME}/conf.xml
4851
mv /tmp/exist-webapp-context.xml ${EXIST_HOME}/tools/jetty/webapps/exist-webapp-context.xml

getopt-settings.eXist4.patch

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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";

0 commit comments

Comments
 (0)