X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=engine-d-standalone%2Fsrc%2Fmain%2Fassembly%2Fbin%2FinitDB.sh;h=3d2e8bc17f047b4cc4b5871cbaf35dafc988daee;hb=refs%2Fchanges%2F01%2F119001%2F1;hp=9571e59b0676dbb40e04fcf5023e1e0213902672;hpb=5ce90575096bf2c894bde0dd5f6b99298c5e9e88;p=holmes%2Fengine-management.git diff --git a/engine-d-standalone/src/main/assembly/bin/initDB.sh b/engine-d-standalone/src/main/assembly/bin/initDB.sh index 9571e59..3d2e8bc 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,7 +42,7 @@ 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 @@ -51,7 +51,7 @@ psql -U "$user" -p "$port" -h "$host" -d "$dbname" -f $main_path/dbscripts/postg 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 -eq 1 ]; then unset PGPASSWORD fi