diff --git a/scripts/docker-entrypoint.ws.sh b/scripts/docker-entrypoint.ws.sh deleted file mode 100644 index 480843de112113fb90b25975a02d2a40c74adf66..0000000000000000000000000000000000000000 --- a/scripts/docker-entrypoint.ws.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# shellcheck disable=SC1090 - -source "$(dirname "${0}")/docker-config.inc.sh"; -exit_status=${?}; -[ "${exit_status}" -eq 0 ] || exit "${exit_status}"; - -# Download models to use -model_path=$(get_models "${MODEL}" "${NSHM_VERSION}"); -exit_status=${?}; -check_exit_status ${exit_status}; - -# Run web services -java -jar "${PROJECT}.jar" \ - "-Dmicronaut.server.context-path=${CONTEXT_PATH}" \ - --models="${model_path}"; -exit_status=${?}; -check_exit_status ${exit_status}; - -exit ${exit_status}; diff --git a/scripts/docker-functions.inc.sh b/scripts/docker-functions.inc.sh index 22092cb65089b306f092cd4fda9f1d4eaffd6120..ae711e683f6ce28e5d6c1ec21d321bda2e3ec436 100644 --- a/scripts/docker-functions.inc.sh +++ b/scripts/docker-functions.inc.sh @@ -86,7 +86,7 @@ error_exit() { } #### -# Returns the model path for deagg-epsilon and hazard-2018. +# Returns the model path. # # @param $1 nshm {String} # The NSHM to download. @@ -229,58 +229,6 @@ get_model_path() { return ${exit_status}; } -#### -# Get NSHMs for web services. -# -# @param $1 nshm {String} -# The NSHM to download. -# @param $1 nshm_version {String} -# The version to download from GitHub. -# -# @return String -# The path to the model directory -# @status Integer -# The result for get_model -#### -get_models() { - local nshm=${1}; - local nshm_version=${2}; - local model_base_path="models"; - local nshm_name; - local exit_status; - - if [ ! -d "${model_base_path}" ]; then - mkdir ${model_base_path}; - fi - - cd ${model_base_path} || error_exit "Could not change directory [${model_base_path}]" 1; - nshm_name=$(get_model "${nshm}" "${nshm_version}"); - exit_status=${?}; - - if [ ${exit_status} -eq 0 ]; then - local model; - local year; - model="$(echo "${nshm}" | cut -d _ -f1 | awk \{'print tolower($0)'\})"; - year="$(echo "${nshm}" | cut -d _ -f2 | awk \{'print tolower($0)'\})"; - - if [ "${model}" == 'conus' ]; then - [[ -d wus ]] || mkdir wus; - [[ -d ceus ]]|| mkdir ceus; - mv "${nshm_name}/${CEUS}" "ceus/${year}"; - mv "${nshm_name}/${WUS}" "wus/${year}"; - rm -r "${nshm_name}"; - else - mkdir "${model}"; - mv "${nshm_name}" "${model}/${year}"; - fi - fi - - cd ../; - - echo ${model_base_path}; - return ${exit_status}; -} - #### # Returns to nshmp-haz Java class to call. #