Revert "Fix: Typo"

This reverts commit ca21545d7b.
This commit is contained in:
peaklabs-dev
2024-09-25 00:00:26 +02:00
parent 768b39dd25
commit b0635327a1

View File

@@ -480,9 +480,9 @@ syncSshKeys() {
} }
set +e set +e
IF_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l) IS_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
set -e set -e
if [ "$IF_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then if [ "$IS_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
echo " - Generating SSH key." echo " - Generating SSH key."
ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify
chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal