aboutsummaryrefslogtreecommitdiffstats
path: root/resources/bin
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-04-03 11:02:53 +0800
committerYan Yang <yangyanyj@chinamobile.com>2019-04-03 03:56:54 +0000
commitbe6150278ad87a1096df914954e76b99222b9eb8 (patch)
treea6769c8944803b2f690f4a4f92dc06b9e3df997a /resources/bin
parent35448cd519979cf0a82320180dde121a88b6eb82 (diff)
fix database bug
Change-Id: Ic96e3627b74f6be61710358777e2499f77a5c63a Issue-ID: VFC-1334 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'resources/bin')
-rw-r--r--resources/bin/initDB.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/bin/initDB.sh b/resources/bin/initDB.sh
index 3b277935..9d157283 100644
--- a/resources/bin/initDB.sh
+++ b/resources/bin/initDB.sh
@@ -25,10 +25,10 @@ sql_path=$HOME/../
mysql -u$MYSQL_USER -p$MYSQL_PASSWORD -P$MYSQL_PORT -h$MYSQL_IP <$sql_path/dbscripts/mysql/vfc-nfvo-catalog-createdb.sql
sql_result=$?
if [ $sql_result -ne 0 ] ; then
- echo "failed to create nfvocatalog database"
+ echo "Failed to create nfvocatalog database"
exit 1
-elif [ $sql_result -eq 0 ]; then
- echo "create nfvocatalog database successfully"
+else
+ echo "Create nfvocatalog database successfully"
exit 0
fi