1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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.
This commit is contained in:
Ricardo Carrillo Cruz 2017-10-11 12:44:57 +02:00 committed by GitHub
parent ac95ecaf13
commit 7acb0bb187

View file

@ -11,13 +11,13 @@
- name: test login - name: test login
expect: 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: responses:
(?i)password: "pass123" (?i)password: "pass123"
- name: test login with invalid password (should fail) - name: test login with invalid password (should fail)
expect: 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: responses:
(?i)password: "badpass" (?i)password: "badpass"
ignore_errors: yes ignore_errors: yes