From 51c21c0c1152e4ff1965690477570ed9c07a379b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20-=20Le=20Filament?= <theo@le-filament.com> Date: Thu, 22 Jun 2023 17:34:02 +0200 Subject: [PATCH] feat(tasks): enable ssh daemon service --- tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 85366fc..d605b84 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -263,6 +263,11 @@ notify: restart-sshd tags: sshd +- name: Enable SSH daemon service + service: + name: ssh + enabled: true + - name: Copy bashrc file with session timeout copy: src: bash.bashrc -- GitLab