From cb3906c5fa613dd3ee042d87c769ff4d791b7571 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Thu, 20 Jun 2024 22:25:23 +0200 Subject: [PATCH] :art: fix indent style --- entrypoint.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1bf31dd..ec91574 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,11 +7,11 @@ chmod 700 /host_keys # check whether they exist if [[ ! -f /host_keys/ssh_host_rsa_key || ! -f /host_keys/ssh_host_ecdsa_key || ! -f /host_keys/ssh_host_ed25519_key || ! -f /host_keys/ssh_host_rsa_key.pub || ! -f /host_keys/ssh_host_ecdsa_key.pub || ! -f /host_keys/ssh_host_ed25519_key.pub ]]; then - # create new keys - mkdir -p /host_keys/etc/ssh - ssh-keygen -A -f /host_keys - mv /host_keys/etc/ssh/* /host_keys/ - rmdir /host_keys/etc/ssh + # create new keys + mkdir -p /host_keys/etc/ssh + ssh-keygen -A -f /host_keys + mv /host_keys/etc/ssh/* /host_keys/ + rmdir /host_keys/etc/ssh fi