diff options
author | Rachitha Ramappa <rachitha.ramappa@att.com> | 2021-03-04 15:22:55 +0000 |
---|---|---|
committer | Ikram Ikramullah <ikram@research.att.com> | 2021-03-04 15:25:35 +0000 |
commit | 1a64b7c494b129d39ece23aa0615f49bdb3ac52e (patch) | |
tree | 61eaa532b3467a4ab4092a50c0e3ce154af2f6df /deliveries/src/main/scripts/localize_quartz.sh | |
parent | 22a095b3770599b443721f247630c7517da268e8 (diff) |
Reason for revert: This is blocking us from releasing the honolulu release - the change is much wider than initially thought of - parts of this change are still in the open in oom - this cannot go alone. See VID-890 for more details.
Issue-ID: VID-890
Change-Id: Ib8bb4a462f63a76acf446c8784ae082452c5cd4a
Signed-off-by: rachitha.ramappa@att.com
Diffstat (limited to 'deliveries/src/main/scripts/localize_quartz.sh')
-rwxr-xr-x | deliveries/src/main/scripts/localize_quartz.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/deliveries/src/main/scripts/localize_quartz.sh b/deliveries/src/main/scripts/localize_quartz.sh new file mode 100755 index 000000000..e2b3a0adc --- /dev/null +++ b/deliveries/src/main/scripts/localize_quartz.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +FINAL_CONFIG_FILE=$1/conf/quartz.properties +TEMPLATE_CONFIG_FILE=$1/conf/quartz_template.properties + +echo "Localizing the VID quartz configuration" + +sed -e 's/${VID_MYSQL_HOST}/'${VID_MYSQL_HOST}'/g' \ + -e 's/${VID_MYSQL_PORT}/'${VID_MYSQL_PORT}'/g' \ + -e 's/${VID_MYSQL_DBNAME}/'${VID_MYSQL_DBNAME}'/g' \ + -e 's/${VID_MYSQL_USER}/'${VID_MYSQL_USER}'/g' \ + -e 's/${VID_MYSQL_PASS}/'"$(printf '%q' "${VID_MYSQL_PASS}")"'/g' \ + -e 's/${VID_MYSQL_MAXCONNECTIONS}/'${VID_MYSQL_MAXCONNECTIONS}'/g' ${TEMPLATE_CONFIG_FILE} > ${FINAL_CONFIG_FILE} || { + echo "ERROR: Could not process template file ${TEMPLATE_CONFIG_FILE} into ${FINAL_CONFIG_FILE}" + exit 4 + } + +echo "Localized ${FINAL_CONFIG_FILE} successfully." + + |