diff options
author | Avi Ziv <avi.ziv@amdocs.com> | 2017-07-31 15:50:46 +0300 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-08-02 21:18:34 +0300 |
commit | f5854fd32c19c44d32a3e6739b30271d4dccd393 (patch) | |
tree | 6e7420dd3d82200849e51c2af3f2696f11815d12 /test-apis-ci/src/main/resources/ci/scripts | |
parent | e280d7229f42210719b76775cd47bddb675c3c53 (diff) |
[SDC] code rebase for sdc resync to LF
Change-Id: If6d87c9e324f508a8a6b80b10a03d1843901472e
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'test-apis-ci/src/main/resources/ci/scripts')
-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 } } |