X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=jjb%2Fopendaylight-infra-copy-ssh-keys.sh;h=7e3d8b0caf78f062f66d04d200e38ad223c74ef0;hb=29b2f25826a1d889aa515be1c39c40da83f7ae00;hp=9af4b8e3981f606567c29daaecfd655120bba05c;hpb=3bc78584ab661dea8b9d687f3f12b476393c0a92;p=releng%2Fbuilder.git diff --git a/jjb/opendaylight-infra-copy-ssh-keys.sh b/jjb/opendaylight-infra-copy-ssh-keys.sh index 9af4b8e39..7e3d8b0ca 100644 --- a/jjb/opendaylight-infra-copy-ssh-keys.sh +++ b/jjb/opendaylight-infra-copy-ssh-keys.sh @@ -1,12 +1,13 @@ #!/bin/bash echo "----------> Copy ssh public keys to csit lab" -# shellcheck disable=SC1090 -source "$WORKSPACE/.venv-openstack/bin/activate" +# shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091 +source "/tmp/v/openstack/bin/activate" function copy-ssh-keys-to-slave() { RETRIES=60 for j in $(seq 1 $RETRIES); do + # shellcheck disable=SC2092 if `ssh-copy-id -i /home/jenkins/.ssh/id_rsa.pub "jenkins@${i}" > /dev/null 2>&1`; then ssh "jenkins@${i}" 'echo "$(facter ipaddress_eth0) $(/bin/hostname)" | sudo tee -a /etc/hosts' echo "Successfully copied public keys to slave ${i}" @@ -30,10 +31,10 @@ function copy-ssh-keys-to-slave() { # Print the Stack outputs parameters so that we can identify which IPs belong # to which VM types. -openstack --os-cloud rackspace stack show -c outputs "$STACK_NAME" +openstack stack show -c outputs "$STACK_NAME" # shellcheck disable=SC2006 -ADDR=(`openstack --os-cloud rackspace stack show -f json -c outputs "$STACK_NAME" | \ +ADDR=(`openstack stack show -f json -c outputs "$STACK_NAME" | \ jq -r '.outputs[] | \ select(.output_key | match("^vm_[0-9]+_ips\$")) | \ .output_value | .[]'`)