From 875ce8d71aadf9517abb773d128853c82a0ddf8c Mon Sep 17 00:00:00 2001 From: tm16-medma Date: Thu, 26 Mar 2026 16:18:50 +0100 Subject: [PATCH] Add detailed logging for OVIS module initialization in setup script Enhanced the ovis-setup.sh script to include a comprehensive log message when the OVIS module is enabled. This update provides clear visual feedback during the initialization process, indicating that OVIS services will start with local oauth2-proxy middleware. --- ccp/modules/ovis-setup.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ccp/modules/ovis-setup.sh b/ccp/modules/ovis-setup.sh index f8458837..c1561b65 100644 --- a/ccp/modules/ovis-setup.sh +++ b/ccp/modules/ovis-setup.sh @@ -1,6 +1,17 @@ #!/bin/bash -e if [ -n "$ENABLE_OVIS" ]; then + log INFO "" + log INFO "######################################################################" + log INFO "# ___ __ _______ ____ __ __ ___ ____ _ _ _ _____ #" + log INFO "# / _ \\ \ / /_ _/ ___| | \\/ |/ _ \\| _ \\| | | | | | ____|#" + log INFO "# | | | |\\ \\ / / | |\\___ \\ | |\\/| | | | | | | | | | | | _| #" + log INFO "# | |_| | \\ V / | | ___) | | | | | |_| | |_| | |_| | |___| |___ #" + log INFO "# \\___/ \\_/ |___|____/ |_| |_|\\___/|____/ \\___/|_____|_____|#" + log INFO "# #" + log INFO "# OVIS MODULE ENABLED - INITIALIZING AUTH + ROUTING #" + log INFO "######################################################################" + log INFO "" log INFO "OVIS setup detected -- will start OVIS services with local oauth2-proxy middleware." TRUSTED_CA_DIR="/etc/bridgehead/trusted-ca-certs" OVIS_OAUTH2_PROXY_PROVIDER_CA_FILES=""