main: modify local_install

This commit is contained in:
Gary 2024-02-23 15:16:10 -08:00
parent c834d436ef
commit 8a2d3e9674

View File

@ -241,14 +241,14 @@ if [ "$AUTOUPDATE" = "false" ]; then
fi
fi
# Generate an ssh key (ed25519) at /data/coolify/ssh/keys/id.root@host.docker.internal
if [ ! -f /data/coolify/ssh/keys/id.root@host.docker.internal ]; then
ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.root@host.docker.internal -q -N "" -C root@coolify
chown 9999 /data/coolify/ssh/keys/id.root@host.docker.internal
# Generate an ssh key (ed25519) at /data/coolify/storage/app/ssh/keys/id.root@host.docker.internal
if [ ! -f /data/coolify/storage/app/ssh/keys/id.root@host.docker.internal ]; then
ssh-keygen -t ed25519 -a 100 -f /data/coolify/storage/app/ssh/keys/id.root@host.docker.internal -q -N "" -C root@coolify
chown 9999 /data/coolify/storage/app/ssh/keys/id.root@host.docker.internal
fi
addSshKey() {
cat /data/coolify/ssh/keys/id.root@host.docker.internal.pub >>~/.ssh/authorized_keys
cat /data/coolify/storage/app/ssh/keys/id.root@host.docker.internal.pub >>~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
}