aboutsummaryrefslogtreecommitdiffstats
path: root/deliveries/src/main/scripts/localize_cache.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deliveries/src/main/scripts/localize_cache.sh')
-rwxr-xr-xdeliveries/src/main/scripts/localize_cache.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/deliveries/src/main/scripts/localize_cache.sh b/deliveries/src/main/scripts/localize_cache.sh
deleted file mode 100755
index 2d676c373..000000000
--- a/deliveries/src/main/scripts/localize_cache.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-FINAL_CONFIG_FILE=$1/classes/cache.ccf
-TEMPLATE_CONFIG_FILE=$1/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."