mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-10 05:33: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
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
__sshd_test_backup_files:
|
|
- /etc/ssh/sshd_config
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
- /tmp/ssh_host_rsa_key2
|
|
tasks:
|
|
- name: "Backup configuration files"
|
|
include_tasks: tasks/backup.yml
|
|
|
|
- name: Remove host key before the test
|
|
file:
|
|
path: /tmp/ssh_host_rsa_key2
|
|
state: absent
|
|
|
|
- name: Ensure group 'nobody' exists
|
|
group:
|
|
name: nobody
|
|
|
|
- name: Ensure the user 'nobody' exists
|
|
user:
|
|
name: nobody
|
|
group: nobody
|
|
comment: nobody
|
|
create_home: no
|
|
shell: /sbin/nologin
|
|
|
|
- name: Configure sshd with alternative host keys
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
# very BAD example
|
|
sshd_hostkey_owner: "nobody"
|
|
sshd_hostkey_group: "nobody"
|
|
sshd_hostkey_mode: "0664"
|
|
sshd:
|
|
HostKey:
|
|
- /tmp/ssh_host_rsa_key2
|
|
|
|
- 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: "{{ main_sshd_config }}"
|
|
register: config
|
|
|
|
- name: Get stat of private key
|
|
stat:
|
|
path: /tmp/ssh_host_rsa_key2
|
|
register: privkey
|
|
|
|
- name: Get stat of public key
|
|
stat:
|
|
path: /tmp/ssh_host_rsa_key2.pub
|
|
register: pubkey
|
|
|
|
- name: Check the options are in configuration file
|
|
assert:
|
|
that:
|
|
- "'HostKey /tmp/ssh_host_rsa_key2' in config.content | b64decode"
|
|
|
|
- name: Check the generated host key has requested properties
|
|
assert:
|
|
that:
|
|
- privkey.stat.exists
|
|
- privkey.stat.gr_name == 'nobody'
|
|
- privkey.stat.pw_name == 'nobody'
|
|
- privkey.stat.mode == '0664'
|
|
- pubkey.stat.exists
|
|
tags: tests::verify
|
|
|
|
- name: "Restore configuration files"
|
|
include_tasks: tasks/restore.yml
|