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
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
__sshd_test_backup_files:
|
|
- /etc/ssh/sshd_config
|
|
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
- /tmp/missing_ssh_host_rsa_key
|
|
tasks:
|
|
- name: "Backup configuration files"
|
|
include_tasks: tasks/backup.yml
|
|
|
|
- name: Configure sshd with missing host keys and prevent their creation
|
|
block:
|
|
- name: Configure missing hostkey
|
|
include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
sshd_verify_hostkeys: []
|
|
sshd:
|
|
HostKey:
|
|
- /tmp/missing_ssh_host_rsa_key
|
|
register: role_result
|
|
|
|
- name: unreachable task
|
|
fail:
|
|
msg: UNREACH
|
|
|
|
rescue:
|
|
- name: Check that we failed in the role
|
|
assert:
|
|
that:
|
|
- ansible_failed_result.msg != 'UNREACH'
|
|
- not role_result.changed
|
|
msg: "Role has not failed when it should have"
|
|
when:
|
|
- ansible_facts['os_family'] != 'Debian'
|
|
- not (ansible_facts['distribution'] == 'RedHat' and ansible_facts['distribution_major_version'] == '6')
|
|
tags: tests::verify
|
|
|
|
- name: Make sure the key was not created
|
|
file:
|
|
path: /tmp/missing_ssh_host_rsa_key
|
|
state: absent
|
|
register: key
|
|
failed_when: key.changed
|
|
tags: tests::verify
|
|
|
|
- name: Make sure service is still running
|
|
service:
|
|
name: sshd
|
|
state: started
|
|
register: result
|
|
failed_when: result.changed
|
|
tags: tests::verify
|
|
|
|
- name: "Restore configuration files"
|
|
include_tasks: tasks/restore.yml
|