From 5aac9dc424bf07b2d641667afae7c34c35505595 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E4=BB=98=E5=85=89=E8=8D=A310144542?= Date: Mon, 23 Aug 2021 10:54:03 +0800 Subject: [PATCH] bugfix - DB init error due to single quotes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Issue-ID: HOLMES-463 Signed-off-by: 付光荣10144542 Change-Id: Iac835bfb113b336a1d4b46db6014fa4c55779d31 --- engine-d-standalone/src/main/assembly/bin/initDB.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine-d-standalone/src/main/assembly/bin/initDB.sh b/engine-d-standalone/src/main/assembly/bin/initDB.sh index dac6878..f0c3713 100644 --- a/engine-d-standalone/src/main/assembly/bin/initDB.sh +++ b/engine-d-standalone/src/main/assembly/bin/initDB.sh @@ -47,6 +47,12 @@ if [ -z `env | grep PGPASSWORD` ]; then 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=$? -- 2.16.6