mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Default ssh port (#39678)
This commit is contained in:
parent
1885883a88
commit
a7660f0603
1 changed files with 2 additions and 2 deletions
|
@ -9,13 +9,13 @@
|
||||||
|
|
||||||
- name: test login via ssh with new user
|
- name: test login via ssh with new user
|
||||||
expect:
|
expect:
|
||||||
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port | default(22) }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
||||||
responses:
|
responses:
|
||||||
(?i)password: "pass123"
|
(?i)password: "pass123"
|
||||||
|
|
||||||
- name: test login via ssh with invalid password (should fail)
|
- name: test login via ssh with invalid password (should fail)
|
||||||
expect:
|
expect:
|
||||||
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port | default(22) }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
||||||
responses:
|
responses:
|
||||||
(?i)password: "badpass"
|
(?i)password: "badpass"
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
|
Loading…
Reference in a new issue