summaryrefslogtreecommitdiffstats
path: root/deliveries/src/main/scripts/localize_logback.sh
diff options
context:
space:
mode:
authorWojciech Sliwka <wojciech.sliwka@nokia.com>2019-07-04 05:38:20 +0000
committerGerrit Code Review <gerrit@onap.org>2019-07-04 05:38:20 +0000
commitfc62274e8d15964d63c62bf0e2f4abc040252ee9 (patch)
treece8b9d3de8ce1ad4aa38f1f8cf8f4c8c07573749 /deliveries/src/main/scripts/localize_logback.sh
parentb460da47f0aebe67bed1234711b8bbf4889d1354 (diff)
parent2625de9e904e1389a9d99e5cd90f9f462d0fec72 (diff)
Merge "Send logs to logstash"
Diffstat (limited to 'deliveries/src/main/scripts/localize_logback.sh')
-rwxr-xr-xdeliveries/src/main/scripts/localize_logback.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/deliveries/src/main/scripts/localize_logback.sh b/deliveries/src/main/scripts/localize_logback.sh
deleted file mode 100755
index 90ce883cc..000000000
--- a/deliveries/src/main/scripts/localize_logback.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-BASE_DIR=/etc/onap/vid/conf.d
-FINAL_CONFIG_FILE=${BASE_DIR}/logback.xml
-TEMPLATE_CONFIG_FILE=${BASE_DIR}/logback_template.xml
-
-echo "Localizing the VID logback configuration"
-
-mkdir -p "${VID_LOG_DIR}"
-
-sed -e 's/${VID_LOG_LEVEL}/'${VID_LOG_LEVEL}'/g' \
- -e 's,${VID_LOG_DIR},'${VID_LOG_DIR}',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."