X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=engine-d-standalone%2Fsrc%2Fmain%2Fassembly%2Fbin%2FinitDB.sh;h=94e76077bcd94f8906a87abbbebab0ab3c3467a9;hb=e498a3ee13553ee2aa39224b7ef9e7e17779cef2;hp=501b90d859eb0b6b9abfa12b3884847bd7c9cec7;hpb=c33701f846adc3078e72f4bf88fba7d2c431d299;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 501b90d..94e7607 100644 --- a/engine-d-standalone/src/main/assembly/bin/initDB.sh +++ b/engine-d-standalone/src/main/assembly/bin/initDB.sh @@ -25,9 +25,14 @@ host=$5 echo "Initializing the holmes engine management database..." main_path=$HOME/.. -sed -i "s|DBNAME|$dbname|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" -sed -i "s|DBUSER|$user|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" -sed -i "s|DBPWD|$password|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" +# if deployed using helm, use the helm-generated configuration file. +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" + sed -i "s|DBUSER|$user|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" + sed -i "s|DBPWD|$password|g" "$main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql" +fi cat $main_path/dbscripts/postgresql/onap-holmes_engine-createobj.sql @@ -37,11 +42,19 @@ echo "password=$password" echo "port=$port" echo "host=$host" -export PGPASSWORD=$password -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;' +if [ -z `env | grep PGPASSWORD` ]; then + export PGPASSWORD=$password + need_unset=1 +fi + +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=$? -unset PGPASSWORD + +if [ "$need_unset"x == "1"x ]; then + unset PGPASSWORD +fi + echo "sql_result=$sql_result" if [ $sql_result != 0 ] ; then echo "Failed to initialize the database!"