mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
942 B
YAML
35 lines
942 B
YAML
7 years ago
|
---
|
||
|
- block:
|
||
|
- name: Create user with password
|
||
|
vyos_user:
|
||
|
name: auth_user
|
||
|
role: admin
|
||
|
state: present
|
||
|
configured_password: pass123
|
||
|
|
||
|
- name: test login
|
||
|
expect:
|
||
|
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper 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 '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
||
|
responses:
|
||
|
(?i)password: "badpass"
|
||
|
ignore_errors: yes
|
||
|
register: results
|
||
|
|
||
|
- name: check that attempt failed
|
||
|
assert:
|
||
|
that:
|
||
|
- results.failed
|
||
|
|
||
|
always:
|
||
|
- name: delete user
|
||
|
vyos_user:
|
||
|
name: auth_user
|
||
|
state: absent
|
||
|
register: result
|