ansible-playbooks/roles/core/handlers/remote_access.yml

13 lines
176 B
YAML

---
- name: Start OpenSSH server
service:
name: sshd
state: started
enabled: true
- name: Restart OpenSSH server
service:
name: sshd
state: restarted