diff options
author | 2018-02-28 18:30:07 +0000 | |
---|---|---|
committer | 2018-02-28 18:41:36 +0000 | |
commit | f885318ac0201078e0aa06be6ef0c88c00882931 (patch) | |
tree | 77aa6f1004ca2ac980e8ed45afc9de3f0c4c1333 /jjb | |
parent | dab620d71a1d2c36d89957038b22c37a4ff2420b (diff) |
xci: Use distro specific ssh config while sshing to xci vms
Change-Id: I5e8b738d4293040b2792a926cd13708180590bbb
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/xci/xci-run-functest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/xci/xci-run-functest.sh b/jjb/xci/xci-run-functest.sh index 9f77b78e7..238a833d0 100755 --- a/jjb/xci/xci-run-functest.sh +++ b/jjb/xci/xci-run-functest.sh @@ -39,6 +39,6 @@ if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENT exit 0 fi -ssh -F $HOME/.ssh/xci-vm-config ${DISTRO}_xci_vm "cd releng-xci/xci && PATH=/home/devuser/.local/bin:$PATH ansible-playbook -i installer/osa/files/$XCI_FLAVOR/inventory playbooks/prepare-functest.yml" +ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm "cd releng-xci/xci && PATH=/home/devuser/.local/bin:$PATH ansible-playbook -i installer/osa/files/$XCI_FLAVOR/inventory playbooks/prepare-functest.yml" echo "Running functest" -ssh -F $HOME/.ssh/xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh" +ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh" |