summaryrefslogtreecommitdiffstats
path: root/engine-d-standalone/src/main/assembly/bin/initDB.sh
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2018-07-24 19:26:50 +0800
committerGuangrongFu <fu.guangrong@zte.com.cn>2018-07-24 19:27:09 +0800
commitc33701f846adc3078e72f4bf88fba7d2c431d299 (patch)
treee876503976495c09109c5019a5818db4ff529d46 /engine-d-standalone/src/main/assembly/bin/initDB.sh
parenta475aac49b3b029acf28174117a6423f6dd5eed7 (diff)
Set the base image to alpine
Change-Id: I0b271754635dd0fecb5c6717eef9d56cf1bbbac0 Issue-ID: HOLMES-146 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
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