From 38cc41f0694b732dd8940512f10e7c03841394cc Mon Sep 17 00:00:00 2001 From: rootzoll Date: Fri, 20 Aug 2021 00:36:11 +0200 Subject: [PATCH] make sure ssd is started --- home.admin/_bootstrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home.admin/_bootstrap.sh b/home.admin/_bootstrap.sh index 0a771d530..e537246b8 100755 --- a/home.admin/_bootstrap.sh +++ b/home.admin/_bootstrap.sh @@ -105,8 +105,10 @@ if [ "${provisionFlagExists}" == "1" ]; then exit 1 fi -# make sure SSH server certs are configured +# make sure SSH server certs are configured & sshd is running +sudo systemctl stop sshd sudo dpkg-reconfigure openssh-server +sudo systemctl start sshd ###################################### # SECTION FOR POSSIBLE REBOOT ACTIONS