From 111ff39fb2302c09990645114668eedb2fde21c5 Mon Sep 17 00:00:00 2001 From: julioliraup <167433857+julioliraup@users.noreply.github.com> Date: Thu, 6 Jun 2024 11:06:39 -0300 Subject: [PATCH] Add apt-get update for fix #27 openssl error --- setup/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/setup.sh b/setup/setup.sh index 0b9f37e..b32292b 100644 --- a/setup/setup.sh +++ b/setup/setup.sh @@ -16,7 +16,7 @@ BUNDLE_ZIP=$OUTPUT_DIR/bundle.zip CERT_KEYSTORES_ZIP=$OUTPUT_DIR/cert_keystores.zip HTTP_ZIP=$OUTPUT_DIR/http.zip -apt-get install unzip openssl -y +apt-get update && apt-get install unzip openssl -y create_self_signed_ca() { @@ -151,4 +151,4 @@ chown -R 1000:0 $OUTPUT_DIR printf "=====================================================\n" printf "SSL Certificates generation completed successfully.\n" -printf "=====================================================\n" \ No newline at end of file +printf "=====================================================\n"