diff options
Diffstat (limited to 'asdctool/src/main/resources')
-rw-r--r-- | asdctool/src/main/resources/config/license.txt | 13 | ||||
-rw-r--r-- | asdctool/src/main/resources/config/logback.xml | 24 | ||||
-rw-r--r-- | asdctool/src/main/resources/scripts/dataMigration.sh | 56 | ||||
-rw-r--r-- | asdctool/src/main/resources/scripts/dataMigration1607.sh | 33 | ||||
-rw-r--r-- | asdctool/src/main/resources/scripts/dataMigration1610.sh | 41 | ||||
-rw-r--r-- | asdctool/src/main/resources/scripts/dataMigration1702.sh | 35 | ||||
-rw-r--r-- | asdctool/src/main/resources/scripts/validationTool.sh (renamed from asdctool/src/main/resources/scripts/dataMigration1707.sh) | 13 |
7 files changed, 18 insertions, 197 deletions
diff --git a/asdctool/src/main/resources/config/license.txt b/asdctool/src/main/resources/config/license.txt new file mode 100644 index 0000000000..0a4f362316 --- /dev/null +++ b/asdctool/src/main/resources/config/license.txt @@ -0,0 +1,13 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# diff --git a/asdctool/src/main/resources/config/logback.xml b/asdctool/src/main/resources/config/logback.xml index dadc5254a5..603d894317 100644 --- a/asdctool/src/main/resources/config/logback.xml +++ b/asdctool/src/main/resources/config/logback.xml @@ -45,34 +45,10 @@ </encoder> </appender> - <appender name="MALFORMED_DATA" - class="ch.qos.logback.core.rolling.RollingFileAppender"> - <file>${HOME}/asdctool/logs/${ECOMP-component-name}/${ECOMP-subcomponent-name}/malformed-data.log</file> - - <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> - <fileNamePattern>${HOME}/asdctool/logs/${ECOMP-component-name}/${ECOMP-subcomponent-name}/malformed-data.log.%i - </fileNamePattern> - <minIndex>1</minIndex> - <maxIndex>10</maxIndex> - </rollingPolicy> - - <triggeringPolicy - class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> - <maxFileSize>20MB</maxFileSize> - </triggeringPolicy> - <encoder> - <pattern>${default-log-pattern}</pattern> - </encoder> - </appender> - - <root level="INFO"> <appender-ref ref="DEBUG_ROLLING" /> </root> <logger name="org.openecomp.sdc" level="INFO" /> - <logger name="org.openecomp.sdc.be.model.operations.migration" level="ERROR" > - <appender-ref ref="MALFORMED_DATA"/> - </logger> <logger name="org.openecomp.sdc.asdctool.migration" level="INFO" > <appender-ref ref="STDOUT"/> diff --git a/asdctool/src/main/resources/scripts/dataMigration.sh b/asdctool/src/main/resources/scripts/dataMigration.sh deleted file mode 100644 index e1f4f24a30..0000000000 --- a/asdctool/src/main/resources/scripts/dataMigration.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -############################## -# Data Migration -############################## - -CURRENT_DIR=`pwd` -BASEDIR=$(dirname $1) - -if [ ${BASEDIR:0:1} = "/" ] -then - FULL_PATH=$BASEDIR -else - FULL_PATH=$CURRENT_DIR/$BASEDIR -fi - -source ${FULL_PATH}/baseOperation.sh - -mainClass="org.openecomp.sdc.asdctool.main.MigrationMenu" - -case $1 in - 1604) - command="java $JVM_LOG_FILE -cp $JARS $mainClass migrate-1602-1604 $@" - echo $command - ;; - 1607) - command="sh ./dataMigration1607.sh $@" - echo $command - ;; - 1610) - command="sh ./dataMigration1610.sh $@" - echo $command - ;; - 1702) - command="sh ./dataMigration1702.sh $@" - echo $command - ;; - 1707) - command="sh ./dataMigration1707.sh $@" - echo $command - ;; - *) - echo "No migration for this version $1" - ;; -esac - -$command -result=$? - -echo "***********************************" -echo "***** $result *********************" -echo "***********************************" - -exit $result - - diff --git a/asdctool/src/main/resources/scripts/dataMigration1607.sh b/asdctool/src/main/resources/scripts/dataMigration1607.sh deleted file mode 100644 index 027852d882..0000000000 --- a/asdctool/src/main/resources/scripts/dataMigration1607.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -############################## -# Data Migration 1607 -############################## - -CURRENT_DIR=`pwd` -BASEDIR=$(dirname $0) - -if [ ${BASEDIR:0:1} = "/" ] -then - FULL_PATH=$BASEDIR -else - FULL_PATH=$CURRENT_DIR/$BASEDIR -fi - -source ${FULL_PATH}/baseOperation.sh - -mainClass="org.openecomp.sdc.asdctool.main.MigrationMenu" - -command="java $JVM_LOG_FILE -cp $JARS $mainClass migrate-1604-1607 $@" -echo $command - -$command -result=$? - -echo "***********************************" -echo "***** $result *********************" -echo "***********************************" - -exit $result - - diff --git a/asdctool/src/main/resources/scripts/dataMigration1610.sh b/asdctool/src/main/resources/scripts/dataMigration1610.sh deleted file mode 100644 index 45d61adeee..0000000000 --- a/asdctool/src/main/resources/scripts/dataMigration1610.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -############################## -# Data Migration 1610 -############################## - -CURRENT_DIR=`pwd` -BASEDIR=$(dirname $0) - -if [ ${BASEDIR:0:1} = "/" ] -then - FULL_PATH=$BASEDIR -else - FULL_PATH=$CURRENT_DIR/$BASEDIR -fi - -source ${FULL_PATH}/baseOperation.sh - -mainClass="org.openecomp.sdc.asdctool.main.MigrationMenu" - -command="java $JVM_LOG_FILE -cp $JARS $mainClass fix-properties $@" -echo $command - -$command -result=$? - -if [ $result -eq 0 ] -then - command="java $JVM_LOG_FILE -cp $JARS $mainClass align-tosca-artifacts $@" - echo $command - $command - result=$? -fi - -echo "***********************************" -echo "***** $result *********************" -echo "***********************************" - -exit $result - - diff --git a/asdctool/src/main/resources/scripts/dataMigration1702.sh b/asdctool/src/main/resources/scripts/dataMigration1702.sh deleted file mode 100644 index f2bf56e4ef..0000000000 --- a/asdctool/src/main/resources/scripts/dataMigration1702.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -############################## -# Data Migration 1702 -############################## - -CURRENT_DIR=`pwd` -BASEDIR=$(dirname $0) - -if [ ${BASEDIR:0:1} = "/" ] -then - FULL_PATH=$BASEDIR -else - FULL_PATH=$CURRENT_DIR/$BASEDIR -fi - -source ${FULL_PATH}/baseOperation.sh - -mainClass="org.openecomp.sdc.asdctool.main.MigrationMenu" - -command="java $JVM_LOG_FILE -cp $JARS $mainClass migrate-1610-1702 $@" -echo $command - -$command -result=$? - - - -echo "***********************************" -echo "***** $result *********************" -echo "***********************************" - -exit $result - - diff --git a/asdctool/src/main/resources/scripts/dataMigration1707.sh b/asdctool/src/main/resources/scripts/validationTool.sh index 11a151a7c3..58cd7f3f6a 100644 --- a/asdctool/src/main/resources/scripts/dataMigration1707.sh +++ b/asdctool/src/main/resources/scripts/validationTool.sh @@ -1,7 +1,7 @@ #!/bin/bash ############################## -# Data Migration 1707 +# Validation Tool # ############################## CURRENT_DIR=`pwd` @@ -16,20 +16,17 @@ fi source ${FULL_PATH}/baseOperation.sh -mainClass="org.openecomp.sdc.asdctool.main.MigrationMenu" +mainClass="org.openecomp.sdc.asdctool.main.ValidationTool" -command="java $JVM_LOG_FILE -Xmx6000M -cp $JARS $mainClass migrate-1702-1707 $@" +#command="java $JVM_LOG_FILE -cp $JARS $mainClass reportOutput.txt /home/vagrant/catalog-be/config/catalog-be/" +command="java $JVM_LOG_FILE -cp $JARS $mainClass . /apps/jetty/base/be/config/catalog-be/" echo $command $command result=$? - - echo "***********************************" echo "***** $result *********************" echo "***********************************" -exit $result - - +exit $result
\ No newline at end of file |