diff options
author | 2024-07-02 15:54:12 +0200 | |
---|---|---|
committer | 2024-07-04 14:56:30 +0200 | |
commit | 20fe7a7cefa72abc1294e1e972c28e86403ccb99 (patch) | |
tree | c250970cd8196947041fcfc819ca5d34bffae510 /src/main/scripts/dataRestoreFromSnapshot.sh | |
parent | 938d2eee202bb2eb33bd43f718f157b3ad4b84c6 (diff) |
Use eclipse-temurin:8-jre-alpine docker base image in aai-graphadmin
- use /bin/sh instead of /bin/bash for scripts
- use wget instead of curl
- do not check the container user when executing scripts
Issue-ID: AAI-3916
Change-Id: I3e7c6e47f8eb55f1e2f872e7e427b61fae8232bb
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'src/main/scripts/dataRestoreFromSnapshot.sh')
-rw-r--r-- | src/main/scripts/dataRestoreFromSnapshot.sh | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/main/scripts/dataRestoreFromSnapshot.sh b/src/main/scripts/dataRestoreFromSnapshot.sh index 20bd0a8..d7b1a83 100644 --- a/src/main/scripts/dataRestoreFromSnapshot.sh +++ b/src/main/scripts/dataRestoreFromSnapshot.sh @@ -1,8 +1,8 @@ -#!/bin/ksh +#!/bin/sh # -# 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). @@ -12,7 +12,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" @@ -29,7 +28,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 @@ -45,6 +44,6 @@ if [ "$?" -ne "0" ]; then end_date; exit 1 fi - + end_date; exit 0 |