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

13 lines
176 B
YAML
Raw Normal View History

2018-04-13 18:06:12 -04:00
---
- name: Start OpenSSH server
service:
name: sshd
state: started
enabled: true
- name: Restart OpenSSH server
service:
name: sshd
state: restarted