Remove the tag from esr-server.
[aai/esr-server.git] / esr-core / distribution / standalone / src / main / assembly / bin / initDB.sh
index eb2dc24..5008e82 100644 (file)
@@ -21,14 +21,14 @@ user=$1
 password=$2
 port=$3
 host=$4
-echo "start init extsys db"
+echo "start init esr db"
 main_path=$HOME/../
-mysql -u$user -p$password -P$port -h$host <$main_path/dbscripts/mysql/openo-common-extsys-createobj.sql
+mysql -u$user -p$password -P$port -h$host <$main_path/dbscripts/mysql/onap-aai-esr-createobj.sql
 sql_result=$?
 if [ $sql_result != 0 ] ; then
-   echo "failed to init extsys database!"
+   echo "failed to init esr database!"
    exit 1
 fi
-echo "init extsys database success!"
+echo "init esr database success!"
 exit 0