10 lines
208 B
YAML
Executable file
10 lines
208 B
YAML
Executable file
---
|
|
- name: SSH conf settings copy
|
|
ansible.builtin.copy:
|
|
src: files/90-auth.conf
|
|
dest: /etc/ssh/sshd_config.d/90-auth.conf
|
|
mode: '0644'
|
|
owner: root
|
|
group: root
|
|
notify: Restart SSH
|
|
...
|