From 8acde27aec2df6ce5d58e958b5c12b51ec825a17 Mon Sep 17 00:00:00 2001 From: Virtually Nick Date: Sat, 14 Jan 2023 21:48:38 -0500 Subject: [PATCH] GUACAMOLE-1322: Add SAML_IDP_URL as required for Docker container absent a metadata file. --- guacamole-docker/bin/start.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/guacamole-docker/bin/start.sh b/guacamole-docker/bin/start.sh index c9d205b58..f466d4ed6 100755 --- a/guacamole-docker/bin/start.sh +++ b/guacamole-docker/bin/start.sh @@ -749,17 +749,18 @@ END ## authentication provider, and configure it to connect to the specified SAML ## provider. ## + associate_saml() { # Verify required parameters are present if [ -z "$SAML_IDP_METADATA_URL" ] && \ - [ -z "$SAML_ENTITY_ID" -o -z "$SAML_CALLBACK_URL" ] + [ -z "$SAML_ENTITY_ID" -o -z "$SAML_CALLBACK_URL" -o -z "$SAML_IDP_URL" ] then cat <