aboutsummaryrefslogtreecommitdiffstats
path: root/packages/base/src/files/install/mysql/bin/db_restore_data.sh
diff options
context:
space:
mode:
authorJorge Hernandez <jh1730@att.com>2018-03-28 18:10:31 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-28 18:10:31 +0000
commit95a5bc9816c0bdf56b4ea6699004eb29940ddc6a (patch)
treeae77669442e877457c4bc3ff9a49b426bcd39742 /packages/base/src/files/install/mysql/bin/db_restore_data.sh
parentcb802d83533ff13886f08b6b9ecb8827bb86d90c (diff)
parent5cd57949604803a32bd3a19c183eadf11f0ab900 (diff)
Merge "ONAP code change for log files consolidation"
Diffstat (limited to 'packages/base/src/files/install/mysql/bin/db_restore_data.sh')
-rw-r--r--packages/base/src/files/install/mysql/bin/db_restore_data.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/base/src/files/install/mysql/bin/db_restore_data.sh b/packages/base/src/files/install/mysql/bin/db_restore_data.sh
index ec0874a67..c4fec027f 100644
--- a/packages/base/src/files/install/mysql/bin/db_restore_data.sh
+++ b/packages/base/src/files/install/mysql/bin/db_restore_data.sh
@@ -40,8 +40,6 @@ BACKUP_FILE=""
DATABASE=""
TABLE=""
TEMP_FILE=/tmp/db_restore_data_$$.sql
-DATE=`date +"%Y%m%d"`
-LOG=""
function restore_all
{
@@ -87,11 +85,6 @@ if [ $# -eq 5 ]; then
typeset -l DATABASE="${4}"
typeset -l TABLE="${5}"
echo "DB_USER: $DB_USER"
- if [ -z ${POLICY_LOGS} ]; then
- POLICY_LOGS=/var/log/onap
- fi
- mkdir -p $POLICY_LOGS/policy/db
- LOG=$POLICY_LOGS/policy/db/db_restore_data_$DATE.log
if [ -f $BACKUP_FILE ]; then
if [ "${TABLE}" != "all" ]; then
restore_table ${DATABASE} ${TABLE}