mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 12:53:29 +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
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
__sshd_test_backup_files:
|
|
- /etc/ssh/sshd_config
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
tasks:
|
|
- name: "Backup configuration files"
|
|
include_tasks: tasks/backup.yml
|
|
|
|
- name: Configure sshd
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
sshd:
|
|
AcceptEnv: LANG
|
|
Banner: /etc/issue
|
|
Ciphers: aes256-ctr
|
|
Subsystem: "sftp internal-sftp"
|
|
sshd_config_file: /etc/ssh/sshd_config
|
|
|
|
- name: Verify the options are correctly set
|
|
block:
|
|
- meta: flush_handlers
|
|
|
|
- name: List effective configuration using sshd -T
|
|
command: sshd -T
|
|
register: runtime
|
|
|
|
- name: Print current configuration file
|
|
slurp:
|
|
src: /etc/ssh/sshd_config
|
|
register: config
|
|
|
|
- name: Check the options are effective
|
|
# note, the options are in lower-case here
|
|
assert:
|
|
that:
|
|
- "'acceptenv LANG' in runtime.stdout"
|
|
- "'banner /etc/issue' in runtime.stdout"
|
|
- "'ciphers aes256-ctr' in runtime.stdout"
|
|
- "'subsystem sftp internal-sftp' in runtime.stdout"
|
|
|
|
- name: Check the options are in configuration file
|
|
assert:
|
|
that:
|
|
- "'AcceptEnv LANG' in config.content | b64decode"
|
|
- "'Banner /etc/issue' in config.content | b64decode"
|
|
- "'Ciphers aes256-ctr' in config.content | b64decode"
|
|
- "'Subsystem sftp internal-sftp' in config.content | b64decode"
|
|
tags: tests::verify
|
|
|
|
- name: "Restore configuration files"
|
|
include_tasks: tasks/restore.yml
|