2020-10-23 21:46:12 +02:00
|
|
|
---
|
|
|
|
- hosts: all
|
2020-11-20 23:12:04 +01:00
|
|
|
vars:
|
|
|
|
__sshd_test_backup_files:
|
|
|
|
- /etc/ssh/sshd_config
|
|
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
|
|
- /tmp/missing_ssh_host_rsa_key
|
2020-10-23 21:46:12 +02:00
|
|
|
tasks:
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Backup configuration files"
|
|
|
|
include_tasks: tasks/backup.yml
|
2020-11-20 23:12:04 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Configure sshd with missing host keys and prevent their creation
|
|
|
|
block:
|
|
|
|
- name: Configure missing hostkey
|
|
|
|
include_role:
|
|
|
|
name: ansible-sshd
|
|
|
|
vars:
|
|
|
|
sshd_verify_hostkeys: []
|
|
|
|
sshd:
|
|
|
|
HostKey:
|
|
|
|
- /tmp/missing_ssh_host_rsa_key
|
|
|
|
register: role_result
|
2020-10-23 21:46:12 +02:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: unreachable task
|
|
|
|
fail:
|
|
|
|
msg: UNREACH
|
2020-10-23 21:46:12 +02:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
rescue:
|
|
|
|
- name: Check that we failed in the role
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_failed_result.msg != 'UNREACH'
|
|
|
|
- not role_result.changed
|
|
|
|
msg: "Role has not failed when it should have"
|
2021-08-06 22:10:57 +02:00
|
|
|
when:
|
|
|
|
- ansible_facts['os_family'] != 'Debian'
|
|
|
|
- not (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '6')
|
2021-04-07 20:12:03 +02:00
|
|
|
tags: tests::verify
|
2020-11-20 23:12:04 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Make sure the key was not created
|
|
|
|
file:
|
|
|
|
path: /tmp/missing_ssh_host_rsa_key
|
|
|
|
state: absent
|
|
|
|
register: key
|
|
|
|
failed_when: key.changed
|
|
|
|
tags: tests::verify
|
2020-11-20 23:12:04 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Make sure service is still running
|
|
|
|
service:
|
|
|
|
name: sshd
|
|
|
|
state: started
|
|
|
|
register: result
|
|
|
|
failed_when: result.changed
|
|
|
|
tags: tests::verify
|
2021-08-09 08:50:01 +02:00
|
|
|
when:
|
|
|
|
- not (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '6')
|
2020-10-23 21:46:12 +02:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Restore configuration files"
|
|
|
|
include_tasks: tasks/restore.yml
|