2020-11-21 00:24:32 +01:00
|
|
|
---
|
2023-04-10 22:19:29 +02:00
|
|
|
- name: Test precedence
|
|
|
|
hosts: all
|
2020-11-21 00:24:32 +01:00
|
|
|
vars:
|
|
|
|
__sshd_test_backup_files:
|
|
|
|
- /etc/ssh/sshd_config
|
|
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
|
|
- /tmp/ssh_host_rsa_key
|
|
|
|
tasks:
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Backup configuration files"
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.include_tasks: tasks/backup.yml
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Remove host key before the test
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.file:
|
2021-04-07 20:12:03 +02:00
|
|
|
path: /tmp/ssh_host_rsa_key
|
|
|
|
state: absent
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2022-06-03 12:22:17 +02:00
|
|
|
- name: Configure sshd # noqa var-naming
|
|
|
|
ansible.builtin.include_role:
|
2021-04-07 20:12:03 +02:00
|
|
|
name: ansible-sshd
|
|
|
|
vars:
|
2024-10-24 18:59:04 +02:00
|
|
|
sshd_config:
|
2021-04-07 20:12:03 +02:00
|
|
|
Banner: /etc/issue
|
|
|
|
Ciphers: aes256-ctr
|
|
|
|
HostKey: /etc/ssh/ssh_host_rsa_key
|
|
|
|
sshd_Ciphers: aes128-ctr
|
|
|
|
sshd_Banner: /etc/good-issue
|
|
|
|
sshd_HostKey: /tmp/ssh_host_rsa_key
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Verify the options are correctly set
|
2023-04-10 22:19:29 +02:00
|
|
|
tags: tests::verify
|
2021-04-07 20:12:03 +02:00
|
|
|
block:
|
2022-06-03 12:22:17 +02:00
|
|
|
- name: Flush metadata
|
|
|
|
ansible.builtin.meta: flush_handlers
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2022-06-05 09:54:56 +02:00
|
|
|
- name: List effective configuration using sshd -T
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.command: sshd -T
|
2021-04-07 20:12:03 +02:00
|
|
|
register: runtime
|
2022-06-05 09:54:56 +02:00
|
|
|
changed_when: false
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Print current configuration file
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.slurp:
|
2021-04-07 20:12:03 +02:00
|
|
|
src: "{{ main_sshd_config }}"
|
|
|
|
register: config
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Check the sshd_* values are effective in runtime
|
|
|
|
# note, the options are in lower-case here
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.assert:
|
2021-04-07 20:12:03 +02:00
|
|
|
that:
|
|
|
|
- "'banner /etc/good-issue' in runtime.stdout"
|
|
|
|
- "'ciphers aes128-ctr' in runtime.stdout"
|
|
|
|
- "'hostkey /tmp/ssh_host_rsa_key' in runtime.stdout"
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Check the options are in configuration file
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.assert:
|
2021-04-07 20:12:03 +02:00
|
|
|
that:
|
|
|
|
- "'Banner /etc/good-issue' in config.content | b64decode"
|
|
|
|
- "'Ciphers aes128-ctr' in config.content | b64decode"
|
|
|
|
- "'HostKey /tmp/ssh_host_rsa_key' in config.content | b64decode"
|
2020-11-21 00:24:32 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Restore configuration files"
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.include_tasks: tasks/restore.yml
|