X-Git-Url: https://gerrit.onap.org/r/gitweb?p=holmes%2Fengine-management.git;a=blobdiff_plain;f=engine-d-standalone%2Fsrc%2Fmain%2Fassembly%2Fbin%2FinitDB.sh;h=f0c3713623f97ef43ade28dd81467ffc0a59ba1a;hp=9571e59b0676dbb40e04fcf5023e1e0213902672;hb=5aac9dc424bf07b2d641667afae7c34c35505595;hpb=5ce90575096bf2c894bde0dd5f6b99298c5e9e88 diff --git a/engine-d-standalone/src/main/assembly/bin/initDB.sh b/engine-d-standalone/src/main/assembly/bin/initDB.sh index 9571e59..f0c3713 100644 --- a/engine-d-standalone/src/main/assembly/bin/initDB.sh +++ b/engine-d-standalone/src/main/assembly/bin/initDB.sh @@ -26,7 +26,7 @@ echo "Initializing the holmes engine management database..." main_path=$HOME/.. # if deployed using helm, use the helm-generated configuration file. -if [[ -d /opt/hemconfig ]]; then +if [ -d /opt/hemconfig ]; then cp /opt/hemconfig/onap-holmes_engine-createobj.sql "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" else sed -i "s|DBNAME|$dbname|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" @@ -42,16 +42,22 @@ echo "password=$password" echo "port=$port" echo "host=$host" -if [[ -z `env | grep PGPASSWORD` ]]; then +if [ -z `env | grep PGPASSWORD` ]; then export PGPASSWORD=$password need_unset=1 fi +# Escape the single quote to avoid cause errors when executing the scripts. +password=`sed -rn "s/.+ ('.+') .+/\1/p" $main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql` +password=${password:1:-1} +password_e=`echo $password | sed "s#'#''#g"` +sed -i "s#$password#$password_e#" $main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql + psql -U "$user" -p "$port" -h "$host" -d "$dbname" -f $main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql psql -U "$user" -p "$port" -h "$host" -d "$dbname" --command 'select * from alarm_info;' sql_result=$? -if [[ $need_unset -eq 1 ]]; then +if [ "$need_unset"x = "1"x ]; then unset PGPASSWORD fi