From cf9d659b6c5aaa610651f3458f81da85bb492748 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 6 May 2024 15:52:48 +0200 Subject: [PATCH] SSL certs fix Signed-off-by: Daniel --- appliances/Harbor/appliance.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appliances/Harbor/appliance.sh b/appliances/Harbor/appliance.sh index e12f6f7f..0a703ba4 100644 --- a/appliances/Harbor/appliance.sh +++ b/appliances/Harbor/appliance.sh @@ -70,8 +70,8 @@ service_configure() { generate_ssl_certs else msg info "Configuring provided SSL certificates..." - echo $HARBOR_SSL_CERT >> mkdir /root/certs/server.crt - echo $HARBOR_SSL_KEY >> mkdir /root/certs/server.key + echo $HARBOR_SSL_CERT >> /root/certs/server.crt + echo $HARBOR_SSL_KEY >> /root/certs/server.key fi else msg info "The certificates already exist" @@ -323,4 +323,4 @@ cleanup_installation() { msg info "Cleaning up installation residues..." apt-get clean rm /root/harbor-online-installer-v*.tgz -} \ No newline at end of file +}