mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-13 23:10:19 +01:00
6887864d2c
Cleaning up yamllint errors. - Use .yamllint.yml and .yamllint_defaults.yml instead of .yamllint.yaml. - Fix the invalid indentations. Cleaning up ansible-lint errors. - Add "name" to every task. - Use command rather than shell - Add "changed_when: false". - Use '|' instead of '>' for the shell module. - Fix '/bin/sh: line 3: CRYPTO_POLICY: unbound variable'. - Add "set -eu" and "set -o pipefail" if pipefail is available. Note: "pipefail" is not available in "sh" and "dash". - Add "- '306' # Shells that use pipes should set the pipefail option" to .ansible-lint since ansible-lint does not recognize it if it's set in "if set -o | grep pipefail". RHELPLAN-73804
104 lines
3.6 KiB
YAML
104 lines
3.6 KiB
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
__sshd_test_backup_files:
|
|
- /etc/ssh/sshd_config
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
- /etc/ssh/sshd_config_custom
|
|
- /etc/ssh/sshd_config_custom_second
|
|
tasks:
|
|
- name: "Backup configuration files"
|
|
include_tasks: tasks/backup.yml
|
|
|
|
- name: Configure alternative sshd_config file
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
# just anything -- will not get processed by sshd
|
|
sshd_config_file: /etc/ssh/sshd_config_custom
|
|
sshd_skip_defaults: true
|
|
sshd:
|
|
AcceptEnv: LANG
|
|
Banner: /etc/issue
|
|
Ciphers: aes256-ctr
|
|
sshd_Compression: no
|
|
- name: Configure second alternative sshd_config file
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
# just anything -- will not get processed by sshd
|
|
sshd_config_file: /etc/ssh/sshd_config_custom_second
|
|
sshd_skip_defaults: true
|
|
sshd:
|
|
Banner: /etc/issue2
|
|
Ciphers: aes128-ctr
|
|
sshd_MaxStartups: 100
|
|
- name: Now configure the main sshd_config file
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
sshd:
|
|
Banner: /etc/issue
|
|
Ciphers: aes192-ctr
|
|
HostKey:
|
|
- /tmp/ssh_host_ecdsa_key
|
|
sshd_PasswordAuthentication: no
|
|
|
|
- name: Verify the options are correctly set
|
|
vars:
|
|
main_sshd_config: >-
|
|
{{
|
|
"/etc/ssh/sshd_config.d/00-ansible_system_role.conf"
|
|
if ansible_facts['distribution'] == 'Fedora'
|
|
else "/etc/ssh/sshd_config"
|
|
}}
|
|
block:
|
|
- meta: flush_handlers
|
|
|
|
- name: Print current configuration file
|
|
slurp:
|
|
src: /etc/ssh/sshd_config_custom
|
|
register: config
|
|
|
|
- name: Print second configuration file
|
|
slurp:
|
|
src: /etc/ssh/sshd_config_custom_second
|
|
register: config2
|
|
|
|
- name: Print the main configuration file
|
|
slurp:
|
|
src: "{{ main_sshd_config }}"
|
|
register: config3
|
|
|
|
- name: Check content of first configuration file
|
|
assert:
|
|
that:
|
|
- "'AcceptEnv LANG' in config.content | b64decode"
|
|
- "'Banner /etc/issue' in config.content | b64decode"
|
|
- "'Ciphers aes256-ctr' in config.content | b64decode"
|
|
- "'HostKey' not in config.content | b64decode"
|
|
- "'Compression no' in config.content | b64decode"
|
|
- "'MaxStartups 100' not in config.content | b64decode"
|
|
|
|
- name: Check content of second configuration file
|
|
assert:
|
|
that:
|
|
- "'Banner /etc/issue2' in config2.content | b64decode"
|
|
- "'Ciphers aes128-ctr' in config2.content | b64decode"
|
|
- "'HostKey' not in config2.content | b64decode"
|
|
- "'MaxStartups 100' in config2.content | b64decode"
|
|
- "'Compression no' not in config2.content | b64decode"
|
|
|
|
- name: Check content of the main configuration file
|
|
assert:
|
|
that:
|
|
- "'Banner /etc/issue' in config3.content | b64decode"
|
|
- "'Ciphers aes192-ctr' in config3.content | b64decode"
|
|
- "'HostKey /tmp/ssh_host_ecdsa_key' in config3.content | b64decode"
|
|
- "'PasswordAuthentication no' in config3.content | b64decode"
|
|
- "'MaxStartups 100' not in config3.content | b64decode"
|
|
- "'Compression no' not in config3.content | b64decode"
|
|
tags: tests::verify
|
|
|
|
- name: "Restore configuration files"
|
|
include_tasks: tasks/restore.yml
|