2020-11-20 23:38:38 +01:00
|
|
|
---
|
2023-04-10 22:19:29 +02:00
|
|
|
- name: Test sshd enable
|
|
|
|
hosts: all
|
2020-11-20 23:38:38 +01:00
|
|
|
vars:
|
|
|
|
__sshd_test_backup_files:
|
|
|
|
- /etc/ssh/sshd_config
|
|
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
2021-06-11 11:27:30 +02:00
|
|
|
- /etc/ssh/ssh_host_rsa_key
|
|
|
|
- /etc/ssh/ssh_host_rsa_key.pub
|
2020-11-20 23:38:38 +01:00
|
|
|
tasks:
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Backup configuration files"
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.include_tasks: tasks/backup.yml
|
2020-11-20 23:38:38 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Configure sshd with the role disabled
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.include_role:
|
2021-04-07 20:12:03 +02:00
|
|
|
name: ansible-sshd
|
|
|
|
vars:
|
|
|
|
sshd_enable: false
|
2024-10-24 18:59:04 +02:00
|
|
|
sshd_config:
|
2021-04-07 20:12:03 +02:00
|
|
|
AcceptEnv: XDG_*
|
|
|
|
Banner: /etc/issue
|
|
|
|
Ciphers: aes256-ctr,aes128-ctr
|
|
|
|
sshd_config_file: /etc/ssh/sshd_config
|
2020-11-20 23:38:38 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Print current configuration file
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.slurp:
|
2021-04-07 20:12:03 +02:00
|
|
|
src: /etc/ssh/sshd_config
|
|
|
|
register: config
|
2020-11-20 23:38:38 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Print effective configuration
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.shell: |
|
2021-04-07 20:12:03 +02:00
|
|
|
set -eu
|
|
|
|
if set -o | grep pipefail 2>&1 /dev/null ; then
|
|
|
|
set -o pipefail
|
|
|
|
fi
|
|
|
|
if test ! -f /etc/ssh/ssh_host_rsa_key; then
|
|
|
|
ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -C '' -N ''
|
|
|
|
fi
|
|
|
|
sshd -T
|
|
|
|
register: runtime
|
|
|
|
changed_when: false
|
2020-11-20 23:38:38 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: Check the options were not applied
|
|
|
|
# note, the options are in lower-case here
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.assert:
|
2021-04-07 20:12:03 +02:00
|
|
|
that:
|
|
|
|
- "'Acceptenv XDG_*' not in config.content | b64decode"
|
|
|
|
- "'Banner /etc/issue' not in config.content | b64decode"
|
|
|
|
- "'Ciphers aes256-ctr,aes128-ctr' not in config.content | b64decode"
|
|
|
|
- "'acceptenv XDG_*' not in runtime.stdout"
|
|
|
|
- "'banner /etc/issue' not in runtime.stdout"
|
|
|
|
- "'ciphers aes256-ctr,aes128-ctr' not in runtime.stdout"
|
2020-11-20 23:38:38 +01:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: "Restore configuration files"
|
2022-06-05 09:54:56 +02:00
|
|
|
ansible.builtin.include_tasks: tasks/restore.yml
|