diff options
Diffstat (limited to 'deliveries/src/main/scripts/localize_cache.sh')
-rw-r--r-- | deliveries/src/main/scripts/localize_cache.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/deliveries/src/main/scripts/localize_cache.sh b/deliveries/src/main/scripts/localize_cache.sh new file mode 100644 index 00000000..d25949cc --- /dev/null +++ b/deliveries/src/main/scripts/localize_cache.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +FINAL_CONFIG_FILE=/tmp/vid/stage/WEB-INF/classes/cache.ccf +TEMPLATE_CONFIG_FILE=/tmp/vid/stage/WEB-INF/classes/cache_template.ccf + +echo "Localizing the VID cache configuration" + +mkdir -p "${CACHE_DIRECTORY}" + +sed -e 's,${CACHE_DIRECTORY},'${CACHE_DIRECTORY}',g' ${TEMPLATE_CONFIG_FILE} > ${FINAL_CONFIG_FILE} || { + echo "ERROR: Could not process template file ${TEMPLATE_CONFIG_FILE} into ${FINAL_CONFIG_FILE}" + exit 3 + } + +echo "Localized ${FINAL_CONFIG_FILE} successfully." |