From c2279d18e166168ae20bfc9f26f8994264b8f26e Mon Sep 17 00:00:00 2001 From: Rodger Castle Date: Mon, 4 May 2026 20:02:20 -0400 Subject: [PATCH] Removed --quiet from package installation so it doesn't look like it just hangs --- imagehost-setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/imagehost-setup.sh b/imagehost-setup.sh index 2db631d..a05585d 100644 --- a/imagehost-setup.sh +++ b/imagehost-setup.sh @@ -134,16 +134,16 @@ exec > >(tee -a "$LOG_FILE") 2>&1 banner "Step 1/7 — Installing packages" info "Updating system packages…" -dnf -y update --quiet +dnf -y update info "Installing EPEL repository…" -dnf -y install epel-release --quiet +dnf -y install epel-release info "Installing Nginx, fail2ban, certbot, and utilities…" -dnf -y install nginx fail2ban firewalld pwgen --quiet +dnf -y install nginx fail2ban firewalld pwgen if $USE_SSL; then - dnf -y install certbot python3-certbot-nginx --quiet + dnf -y install certbot python3-certbot-nginx fi success "Packages installed."