diff options
author | Ricardo Carrillo Cruz <ricardo.carrillo.cruz@gmail.com> | 2017-10-11 12:44:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 12:44:57 +0200 |
commit | 7acb0bb187e6542833ecc139e5fa8e53018a2509 (patch) | |
tree | 9166cf13363e047f0c45f2c34e8cca73bc132f59 /test/integration | |
parent | Remove duped authorize on ios_ping anchored tasks (#31572) (diff) | |
download | ansible-7acb0bb187e6542833ecc139e5fa8e53018a2509.tar.xz ansible-7acb0bb187e6542833ecc139e5fa8e53018a2509.zip |
Parameterize the ssh port on ios_user tests (#31573)
On CI we use 8022 for SSH, thus we need to explicitly pass
ansible_ssh_port to the ssh command to work.
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/targets/ios_user/tests/cli/auth.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/ios_user/tests/cli/auth.yaml b/test/integration/targets/ios_user/tests/cli/auth.yaml index ee010879ca..c95c7057af 100644 --- a/test/integration/targets/ios_user/tests/cli/auth.yaml +++ b/test/integration/targets/ios_user/tests/cli/auth.yaml @@ -11,13 +11,13 @@ - name: test login expect: - command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version" + command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version" responses: (?i)password: "pass123" - name: test login with invalid password (should fail) expect: - command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version" + command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version" responses: (?i)password: "badpass" ignore_errors: yes |