From d65133a29925f00916cc18c8ac930615acf8e96e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Billet?= Date: Thu, 27 Nov 2025 10:50:11 +0100 Subject: [PATCH] Fixed secrets.yaml file not found 3. --- deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy.sh b/deploy.sh index 3d2b68e..08b1364 100755 --- a/deploy.sh +++ b/deploy.sh @@ -73,6 +73,9 @@ setup_ssh() { chmod 700 extra-files/home/numbus-admin/.ssh/ ssh-keygen -t "ed25519" -C "numbus-admin@numbus-server" -f "extra-files/home/numbus-admin/.ssh/id_ed25519" -N "" -q + mkdir -p /home/numbus-admin/ + cp -ravu extra-files/home/numbus-admin/.ssh/ /home/numbus-admin/.ssh/ + REMOTE_PASS=$(gum input --password --placeholder "Enter password for 'nixos' on '$TARGET_HOST'") if [ -z "$REMOTE_PASS" ]; then echo " ❌ Password is required to proceed. Aborting."