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.
ansible/test/integration/targets/user/tasks/test_ssh_key_passphrase.yml

31 lines
765 B
YAML

# Test creating ssh key with passphrase
- name: Remove ansibulluser
user:
name: ansibulluser
state: absent
- name: Create user with ssh key
user:
name: ansibulluser
state: present
generate_ssh_key: yes
force: yes
ssh_key_file: .ssh/test_id_rsa
ssh_key_passphrase: secret_passphrase
register: ansibulluser_create_with_ssh_key
- name: Unlock ssh key
command: "ssh-keygen -y -f {{ ansibulluser_create_with_ssh_key.ssh_key_file|quote }} -P secret_passphrase"
register: result
- name: Check that ssh key was unlocked successfully
assert:
that:
- result.rc == 0
- name: Clean ssh key
file:
path: "{{ ansibulluser_create_with_ssh_key.ssh_key_file }}"
state: absent
when: ansible_os_family == 'FreeBSD'