feat ansible ssh configuration

This commit is contained in:
2024-08-31 21:21:26 +01:00
parent 44ebbbf28a
commit b3d9bdfbe3
9 changed files with 96 additions and 21 deletions

View File

@@ -0,0 +1,6 @@
---
- import_tasks: services.ssh.yml

View File

@@ -0,0 +1,8 @@
---
- name: SSH - Restart Service
become: true
ansible.builtin.service:
daemon_reload: true
name: ssh
enabled: true
state: restarted