Update ssh_config test
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details

This commit is contained in:
Santiago Lo Coco 2024-04-15 23:10:33 +02:00
parent 59dd458289
commit 77ba1c7846
2 changed files with 18 additions and 1 deletions

View File

@ -5,7 +5,7 @@
shell: "{{ item.shell }}"
uid: "{{ item.userid }}"
expires: "{{ (((item.expiry_date + ' 00:00:00') | to_datetime).strftime('%s')) if item.expiry_date is defined else omit }}"
home: "{{ item.home | default(omit)}}"
home: "{{ item.home | default(omit) }}"
groups: "{{ item.groups | default(omit) }}"
loop: "{{ local_accounts_list }}"

View File

@ -11,3 +11,20 @@
roles:
- role: slococo.playground.ssh_config
tasks:
- name: Check SSH daemon configuration
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
regexp: "^{{ item.key }}"
line: "{{ item.key }} {{ item.value }}"
state: present
mode: '0644'
loop: "{{ ssh_config_options | dict2items }}"
check_mode: true
register: ssh_config_result
- name: Fail if any change occurred
ansible.builtin.fail:
msg: "A change occurred in SSH daemon configuration."
when: ssh_config_result.changed and not ansible_check_mode