From 32df69286e3b9c1eea5f1342ac82257cf5c844b9 Mon Sep 17 00:00:00 2001 From: Gyurix Date: Tue, 27 Aug 2024 13:18:49 +0200 Subject: [PATCH] dot fix --- scripts/scheduler/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/scheduler/entrypoint.sh b/scripts/scheduler/entrypoint.sh index bcb6975..3c0411c 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -38,7 +38,7 @@ SCHEDULER_SERVICEFILE_GENERATE_TEST=${SCHEDULER_SERVICEFILE_GENERATE_TEST:-false check_installer_key() { mkdir -p /root/.ssh if [ -f /etc/user/data/installer ]; then - if [ -f /root/ssh/id_rsa ]; then # remove symlink if exists + if [ -f /root/.ssh/id_rsa ]; then # remove symlink if exists rm /root/.ssh/id_rsa fi; ln -s /etc/user/data/installer /root/.ssh/id_rsa