summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author付光荣10144542 <fu.guangrong@zte.com.cn>2021-08-23 10:53:06 +0800
committer付光荣10144542 <fu.guangrong@zte.com.cn>2021-08-23 10:53:06 +0800
commit96e01e4f6fe8e3294612360510485a7a7edb0bb0 (patch)
treed49e97b6637e2fe6757e3083f969b5c5ae45db5f
parentbd657ac5ef55d89917f42b76b1cee9c9852a07a8 (diff)
bugfix - DB init error due to single quotes
Issue-ID: HOLMES-463 Signed-off-by: 付光荣10144542 <fu.guangrong@zte.com.cn> Change-Id: Ic1d9cf8007448d47efd278a33bcb951266a6c0e1
-rw-r--r--rulemgt-standalone/src/main/assembly/bin/initDB.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/rulemgt-standalone/src/main/assembly/bin/initDB.sh b/rulemgt-standalone/src/main/assembly/bin/initDB.sh
index 86a2d80..586eb03 100644
--- a/rulemgt-standalone/src/main/assembly/bin/initDB.sh
+++ b/rulemgt-standalone/src/main/assembly/bin/initDB.sh
@@ -45,6 +45,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_rulemgt-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_rulemgt-createobj.sql
+
psql -U "$user" -p "$port" -h "$host" -d "$dbname" -f $main_path/dbscripts/postgresql/onap-holmes_rulemgt-createobj.sql
psql -U "$user" -p "$port" -h "$host" -d "$dbname" --command 'select * from aplus_rule;'
sql_result=$?