From 210668a49bc0563cf78dd1890fa7b1cfc8959556 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Mon, 1 Aug 2022 15:52:28 +0200 Subject: [PATCH] update_prefix_config: Add 'http://' prefix --- distillery/update_prefix_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distillery/update_prefix_config.sh b/distillery/update_prefix_config.sh index f78c0ad..8cccb8b 100644 --- a/distillery/update_prefix_config.sh +++ b/distillery/update_prefix_config.sh @@ -15,7 +15,7 @@ date | tee -a "$DEPLOY_PREFIX_CONFIG" # update all the instances for slug in $(sql_bookkeep_list); do - INSTANCE_DOMAIN="$(compute_instance_domain "$slug")" + INSTANCE_DOMAIN="http://$(compute_instance_domain "$slug")" echo "$INSTANCE_DOMAIN:" | tee -a "$DEPLOY_PREFIX_CONFIG" read -r INSTANCE_BASE_DIR MYSQL_DATABASE MYSQL_USER GRAPHDB_REPO GRAPHDB_USER GRAPHDB_PASSWORD <<< "$(sql_bookkeep_load "${slug}" "filesystem_base,sql_database,sql_user,graphdb_repository,graphdb_user,graphdb_password" | tail -n +2)"