From b1b1cb25c6655577efb477b3b2d775304618da3e Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Wed, 26 Jul 2023 20:40:14 +0200 Subject: [PATCH] Fix errors in install script --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 044ac2b..b25315e 100755 --- a/install.sh +++ b/install.sh @@ -17,10 +17,10 @@ fi echo "Copying Systemd units and drop-ins to system directory..." $sudo cp $run_directory/etc-letsencrypt.mount /etc/systemd/system/ -if [ ! -d /etc/systemd/systemd-cryptsetup@lecrypt.service.d ]; then +if [ ! -d /etc/systemd/system/systemd-cryptsetup@lecrypt.service.d ]; then $sudo mkdir /etc/systemd/system/systemd-cryptsetup@lecrypt.service.d fi -$sudo cp $run_directory/timeout.conf /etc/systemd/system/systemd-cryptsetup@lecrypt/ +$sudo cp $run_directory/timeout.conf /etc/systemd/system/systemd-cryptsetup@lecrypt.service.d/ if [ ! -d /etc/systemd/system/nginx.service.d ]; then $sudo mkdir /etc/systemd/system/nginx.service.d fi