Update ssh_config test
This commit is contained in:
parent
59dd458289
commit
77ba1c7846
|
@ -5,7 +5,7 @@
|
||||||
shell: "{{ item.shell }}"
|
shell: "{{ item.shell }}"
|
||||||
uid: "{{ item.userid }}"
|
uid: "{{ item.userid }}"
|
||||||
expires: "{{ (((item.expiry_date + ' 00:00:00') | to_datetime).strftime('%s')) if item.expiry_date is defined else omit }}"
|
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) }}"
|
groups: "{{ item.groups | default(omit) }}"
|
||||||
loop: "{{ local_accounts_list }}"
|
loop: "{{ local_accounts_list }}"
|
||||||
|
|
||||||
|
|
|
@ -11,3 +11,20 @@
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- role: slococo.playground.ssh_config
|
- 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
|
||||||
|
|
Loading…
Reference in New Issue