ONAP code change for log files consolidation
[policy/engine.git] / packages / base / src / files / install / mysql / bin / db_restore_data.sh
index ec0874a..c4fec02 100644 (file)
@@ -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}