This is an automated email from the ASF dual-hosted git repository. mjumper pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/guacamole-client.git
commit 9471bdfe5eacaf05b461b813370fe5b3226b33c0 Merge: ad9f90718 ee1765f86 Author: Mike Jumper <[email protected]> AuthorDate: Mon Jun 19 08:48:48 2023 -0700 Merge 1.5.3 changes back to master. guacamole-docker/bin/build-guacamole.sh | 8 ++++++++ guacamole-docker/bin/start.sh | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) diff --cc guacamole-docker/bin/build-guacamole.sh index e9170cca4,275871beb..3baabee59 --- a/guacamole-docker/bin/build-guacamole.sh +++ b/guacamole-docker/bin/build-guacamole.sh @@@ -188,12 -188,11 +188,20 @@@ if [ -f extensions/guacamole-auth-json/ cp extensions/guacamole-auth-json/target/guacamole-auth-json*.jar "$DESTINATION/json" fi +# +# Copy automatic brute-force banning auth extension if it was built +# + +if [ -f extensions/guacamole-auth-ban/target/guacamole-auth-ban*.jar ]; then + mkdir -p "$DESTINATION/ban" + cp extensions/guacamole-auth-ban/target/guacamole-auth-ban*.jar "$DESTINATION/ban" +fi + + # + # Copy history recording storage extension if it was built + # + + if [ -f extensions/guacamole-history-recording-storage/target/guacamole-history-recording-storage*.jar ]; then + mkdir -p "$DESTINATION/recordings" + cp extensions/guacamole-history-recording-storage/target/guacamole-history-recording-storage*.jar "$DESTINATION/recordings" + fi
