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."