summaryrefslogtreecommitdiffstats
path: root/engine-d-standalone/src/main/assembly/bin/initDB.sh
diff options
context:
space:
mode:
authortang peng <tang.peng5@zte.com.cn>2018-07-24 15:18:37 +0000
committerGerrit Code Review <gerrit@onap.org>2018-07-24 15:18:37 +0000
commitc819d3c43d6e88e797224178ce2c079bcc47758a (patch)
tree97a37a9fb624c04d9eb3e60dfd002674918f366f /engine-d-standalone/src/main/assembly/bin/initDB.sh
parentd70f48853bf9ab690f3019b1682c422a6854fd8b (diff)
parentc33701f846adc3078e72f4bf88fba7d2c431d299 (diff)
Merge "Set the base image to alpine"
Diffstat (limited to 'engine-d-standalone/src/main/assembly/bin/initDB.sh')
-rw-r--r--engine-d-standalone/src/main/assembly/bin/initDB.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine-d-standalone/src/main/assembly/bin/initDB.sh b/engine-d-standalone/src/main/assembly/bin/initDB.sh
index 0c48ffa..501b90d 100644
--- a/engine-d-standalone/src/main/assembly/bin/initDB.sh
+++ b/engine-d-standalone/src/main/assembly/bin/initDB.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# Copyright 2017 ZTE Corporation.
#
@@ -42,7 +42,7 @@ psql -U $user -p $port -h $host -d $dbname -f $main_path/dbscripts/postgresql/on
psql -U $user -p $port -h $host -d $dbname --command 'select * from alarm_info;'
sql_result=$?
unset PGPASSWORD
-cat "sql_result="$sql_result
+echo "sql_result=$sql_result"
if [ $sql_result != 0 ] ; then
echo "Failed to initialize the database!"
exit 1