ansible_playbooks/roles/ssh_settings/tasks/copy_ssh_settings.yml
2026-02-24 11:30:35 +03:00

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
...