diff options
Diffstat (limited to 'test-apis-ci/src/main/resources')
-rw-r--r-- | test-apis-ci/src/main/resources/ci/scripts/copyToStorage.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/test-apis-ci/src/main/resources/ci/scripts/copyToStorage.sh b/test-apis-ci/src/main/resources/ci/scripts/copyToStorage.sh index 30094fe235..b7b8c09715 100644 --- a/test-apis-ci/src/main/resources/ci/scripts/copyToStorage.sh +++ b/test-apis-ci/src/main/resources/ci/scripts/copyToStorage.sh @@ -3,7 +3,6 @@ REPORT_NAME=$1 VERSION=$2 ENV=$3 -IP=$4 if [ -z "$REPORT_NAME" ] then @@ -19,6 +18,12 @@ if [ -z "$REPORT_NAME" ] fi fi + +source conf/attInternal.info +IP=$automationResutlsRepo +PASS=$automationResutlsRepoPass + +echo ${IP} /usr/bin/expect << EOF spawn ssh admin@${IP} mkdir -p -m 775 /home/admin/reports/${ENV}/${VERSION}/APIs/ @@ -29,7 +34,7 @@ expect { exp_continue } -re ".*sword.*" { - exp_send "Aa123456\r" + exp_send ${PASS}\r } } @@ -43,7 +48,7 @@ expect { exp_continue } -re ".*sword.*" { - exp_send "Aa123456\r" + exp_send ${PASS}\r } } @@ -57,7 +62,7 @@ expect { exp_continue } -re ".*sword.*" { - exp_send "Aa123456\r" + exp_send ${PASS}\r } } |