Fix script import path for RCON_CMDS_* (#3695)

This commit is contained in:
Geoff Bourne
2025-10-05 09:00:04 -05:00
committed by GitHub
parent 3eb8f85cd4
commit c6cf0857fc
6 changed files with 3 additions and 2 deletions

View File

@@ -74,7 +74,8 @@ exec /image/scripts/start
EOF
COPY --chmod=755 scripts/auto/* /image/scripts/auto/
COPY --chmod=755 files/shims/ /usr/local/bin/
COPY --chmod=755 scripts/shims/* /image/scripts/shims/
RUN ln -s /image/scripts/shims/* /usr/local/bin/
COPY --chmod=755 files/* /image/
RUN curl -fsSL -o /image/Log4jPatcher.jar https://github.com/CreeperHost/Log4jPatcher/releases/download/v1.0.1/Log4jPatcher-1.0.1.jar

View File

@@ -25,4 +25,4 @@ isDebugging && set -x
isNumericElseSetToDefault RCON_CMDS_PERIOD 10
checkIfNotZeroElseSetToDefault RCON_CMDS_PERIOD 10
/usr/local/bin/rcon-cmds-daemon.sh &
"$(dirname "$0")/auto/rcon-cmds-daemon.sh" &