GUACAMOLE-1218: Add auth-json extension and configuration to docker start & build scripts

This commit is contained in:
Bojan Zelic
2020-12-18 13:13:32 -07:00
parent 6fc7537c08
commit 720f884457
2 changed files with 26 additions and 0 deletions

View File

@@ -184,3 +184,11 @@ if [ -f extensions/guacamole-auth-cas/target/*.tar.gz ]; then
"*.jar"
fi
#
# Copy json auth extension if it was built
#
if [ -f extensions/guacamole-auth-json/target/guacamole-auth-json*.jar ]; then
mkdir -p "$DESTINATION/json"
cp extensions/guacamole-auth-json/target/guacamole-auth-json*.jar "$DESTINATION/json"
fi