From 2695d2e11ee0b12c0258303728fe9ea7ea57923f Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Tue, 6 Jan 2026 16:36:17 +0700 Subject: [PATCH] fix: ensure all linux scripts have progress bars --- app/Services/OpenSslService.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Services/OpenSslService.php b/app/Services/OpenSslService.php index c0abdc6..1914522 100644 --- a/app/Services/OpenSslService.php +++ b/app/Services/OpenSslService.php @@ -505,7 +505,8 @@ class OpenSslService "echo \"TrustLab - Installing CA Certificate: {$cert->common_name}\"\n" . "if [ \"\$EUID\" -ne 0 ]; then echo \"Please run as root (sudo)\"; exit 1; fi\n" . "TEMP_CERT=\"/tmp/trustlab-{$cert->uuid}.crt\"\n" . - "curl -sL \"{$cdnUrl}\" -o \"\$TEMP_CERT\"\n" . + "echo \"Downloading certificate...\"\n" . + "curl -L --progress-bar \"{$cdnUrl}\" -o \"\$TEMP_CERT\"\n" . "if [ ! -f \"\$TEMP_CERT\" ]; then echo \"Failed to download cert\"; exit 1; fi\n\n" . "echo \"Checking and installing ca-certificates package...\"\n" . "if [ -d /etc/debian_version ]; then\n" .