summaryrefslogtreecommitdiffstats
path: root/src/main/scripts/dataRestoreFromSnapshotMulti.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scripts/dataRestoreFromSnapshotMulti.sh')
-rw-r--r--src/main/scripts/dataRestoreFromSnapshotMulti.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/main/scripts/dataRestoreFromSnapshotMulti.sh b/src/main/scripts/dataRestoreFromSnapshotMulti.sh
index 1e322dc..b2f74d1 100644
--- a/src/main/scripts/dataRestoreFromSnapshotMulti.sh
+++ b/src/main/scripts/dataRestoreFromSnapshotMulti.sh
@@ -1,10 +1,10 @@
-#!/bin/ksh
+#!/bin/sh
#
# NOTE - this is the updated version of this script which uses multi-threaded reload code
#
-# This script uses the dataSnapshot and SchemaGenerator (via GenTester) java classes to restore
-# data to a database by doing three things:
-# 1) clear out whatever data and schema are currently in the db
+# This script uses the dataSnapshot and SchemaGenerator (via GenTester) java classes to restore
+# data to a database by doing three things:
+# 1) clear out whatever data and schema are currently in the db
# 2) rebuild the schema (using the SchemaGenerator)
# 3) reload data from the passed-in datafile (which must found in the dataSnapShots directory and
# contain an xml view of the db data).
@@ -14,7 +14,6 @@ COMMON_ENV_PATH=$( cd "$(dirname "$0")" ; pwd -P )
. ${COMMON_ENV_PATH}/common_functions.sh
start_date;
-check_user;
if [ "$#" -lt 1 ]; then
echo "Illegal number of parameters"
@@ -31,7 +30,7 @@ if [ "$?" -ne "0" ]; then
echo "Problem clearing out database."
exit 1
fi
-
+
#### Step 2) rebuild the db-schema
execute_spring_jar org.onap.aai.schema.GenTester ${PROJECT_HOME}/resources/logback.xml "GEN_DB_WITH_NO_DEFAULT_CR"
if [ "$?" -ne "0" ]; then
@@ -47,6 +46,6 @@ if [ "$?" -ne "0" ]; then
end_date;
exit 1
fi
-
+
end_date;
exit 0