From ff43d53f53bed2bcc52fe086e4ed0b6453a9c00b Mon Sep 17 00:00:00 2001 From: Maxim Vershinin Date: Sun, 12 Jul 2026 12:37:17 +0000 Subject: [PATCH] CHANGE: restart ssh handler name changed --- playbooks/deploy.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/playbooks/deploy.yaml b/playbooks/deploy.yaml index badae34..cd5802c 100644 --- a/playbooks/deploy.yaml +++ b/playbooks/deploy.yaml @@ -17,7 +17,12 @@ user_passwd_hash: "{{ user_password | password_hash('sha512', 's3ed6123jhgcr') }}" handlers: - - name: restart sshd + - name: restart ssh-server + service: + name: ssh + state: restarted + + - name: restart sshd-server service: name: sshd state: restarted \ No newline at end of file