Enable services

Not just during reload
This commit is contained in:
Jake Howard
2020-04-28 20:48:15 +01:00
parent 61136f69af
commit 974e0e8467
3 changed files with 19 additions and 2 deletions

View File

@ -24,7 +24,13 @@
become: true
register: sshd_config
- name: Restart SSH config
- name: Enable SSH
service:
name: sshd
enabled: true
become: true
- name: Restart SSH Daemon
service:
name: sshd
state: reloaded