mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
c5c519f73b
Add the following files: tests/tasks/check_header.yml and tests/templates/get_ansible_managed.j2. Use check_header.yml to check generated files for the ansible_managed and fingerprint headers. check_header.yml takes these parameters. `fingerprint` is required, and one of `__file` or `__file_content`: * `__file` - the full path of the file to check e.g. `/etc/realmd.conf` * `__file_content` - the output of `slurp` of the file * `__fingerprint` - required - the fingerprint string `system_role:$ROLENAME` e.g. `__fingerprint: "system_role:postfix"` * `__comment_type` - optional, default `plain` - the type of comments used e.g. `__comment_type: c` for C/C++-style comments. `plain` uses `#`. See https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_filters.html#adding-comments-to-files for the different types of comment styles supported. Example: ``` - name: Check generated files for ansible_managed, fingerprint include_tasks: tasks/check_header.yml vars: __file: /etc/myfile.conf __fingerprint: "system_role:my_role" ``` Signed-off-by: Rich Megginson <rmeggins@redhat.com>
129 lines
4.2 KiB
YAML
129 lines
4.2 KiB
YAML
---
|
|
- name: Test we can handle all configuration options documented in manual page
|
|
hosts: all
|
|
gather_facts: true
|
|
vars:
|
|
__sshd_test_backup_files:
|
|
- /etc/dnf/dnf.conf
|
|
- /etc/yum.conf
|
|
- /tmp/sshd_config
|
|
sshd_c: {}
|
|
sshd_skip_test: false
|
|
pkg_mgr: "{{ 'dnf' if ansible_facts['distribution_version'] | int > 7 else 'yum' }}"
|
|
tasks:
|
|
- name: Backup configuration files
|
|
ansible.builtin.include_tasks: tasks/backup.yml
|
|
|
|
- name: Skip test on EL6 as it has some crippled manpages
|
|
ansible.builtin.set_fact:
|
|
sshd_skip_test: true
|
|
when:
|
|
- ansible_facts['os_family'] == "RedHat"
|
|
- ansible_facts['distribution_version'] | int <= 6
|
|
|
|
- name: Enable installation of manual pages on Fedora/RHEL
|
|
ansible.builtin.lineinfile:
|
|
line: tsflags=nodocs
|
|
path: "{{ '/etc/dnf/dnf.conf' if ansible_facts['distribution_version'] | int > 7 else '/etc/yum.conf' }}"
|
|
state: absent
|
|
when:
|
|
- ansible_facts['os_family'] == "RedHat"
|
|
|
|
- name: Reinstall manual pages for openssh-server on RHEL
|
|
ansible.builtin.command: "{{ pkg_mgr | quote }} reinstall -y openssh-server"
|
|
when:
|
|
- ansible_facts['os_family'] == "RedHat"
|
|
changed_when: true
|
|
|
|
- name: Unminimize image on Debian. It looks like there is no simpler way to get manual pages
|
|
ansible.builtin.shell: set -eu; set -o | grep -q pipefail && set -o pipefail; yes | unminimize
|
|
when:
|
|
- ansible_facts['distribution'] == "Ubuntu"
|
|
changed_when: true
|
|
|
|
- name: Make sure manual pages and bash are installed on Alpine
|
|
ansible.builtin.package:
|
|
name:
|
|
- mandoc
|
|
- man-pages
|
|
- openssh-doc
|
|
- bash
|
|
state: present
|
|
when:
|
|
- ansible_facts['distribution'] == "Alpine"
|
|
|
|
- name: Make sure manual pages and bash are installed elsewhere
|
|
ansible.builtin.package:
|
|
name:
|
|
- man
|
|
- bash
|
|
state: present
|
|
when:
|
|
- ansible_facts['distribution'] != "Alpine"
|
|
|
|
- name: Get list of options from manual page
|
|
ansible.builtin.shell: >-
|
|
set -eu; set -o | grep -q pipefail && set -o pipefail; man sshd_config | cat
|
|
changed_when: false
|
|
|
|
- name: Get list of options from manual page
|
|
ansible.builtin.shell: >-
|
|
set -o pipefail && man sshd_config \
|
|
| sed 's/\x08.//g' \
|
|
| grep -o '^ [A-Z][A-Za-z0-9]*\(.\| \)' \
|
|
| grep -v "[A-Za-z0-9] $" | grep -v "[^A-Za-z0-9 ]$" \
|
|
| awk '{ print $1 }' \
|
|
| grep -v '^$' | grep -v "^Match$"
|
|
args:
|
|
executable: /bin/bash
|
|
register: sshd_options
|
|
changed_when: false
|
|
when: not sshd_skip_test
|
|
|
|
- name: Print all the possible options
|
|
ansible.builtin.debug:
|
|
var: ssh_options.stdout_lines
|
|
|
|
- name: Construct the configuration list
|
|
ansible.builtin.set_fact:
|
|
sshd_c: "{{ sshd_c | combine({item: 'yes'}) }}"
|
|
loop:
|
|
"{{ sshd_options.stdout_lines }}"
|
|
when: not sshd_skip_test
|
|
|
|
- name: Run role
|
|
ansible.builtin.include_role:
|
|
name: ansible-sshd
|
|
vars:
|
|
# The configuration is not valid as we are using bogus values
|
|
__sshd_supports_validate: false
|
|
# The hostkeys are not valid either so do not validate them
|
|
sshd_verify_hostkeys: []
|
|
sshd_config_file: /tmp/sshd_config
|
|
sshd:
|
|
"{{ sshd_c }}"
|
|
when: not sshd_skip_test
|
|
|
|
- name: Download the configuration file
|
|
ansible.builtin.slurp:
|
|
src: /tmp/sshd_config
|
|
register: config
|
|
when: not sshd_skip_test
|
|
|
|
- name: Verify the options are in the file
|
|
ansible.builtin.assert:
|
|
that:
|
|
- "'{{ item }} yes' in config.content | b64decode "
|
|
loop:
|
|
"{{ sshd_options.stdout_lines }}"
|
|
when: not sshd_skip_test
|
|
|
|
- name: Check generated files for ansible_managed, fingerprint
|
|
ansible.builtin.include_tasks: tasks/check_header.yml
|
|
vars:
|
|
__file_content: "{{ config }}"
|
|
__fingerprint: "willshersystems:ansible-sshd"
|
|
when: not sshd_skip_test
|
|
|
|
- name: Restore configuration files
|
|
ansible.builtin.include_tasks: tasks/restore.yml
|