Removed --quiet from package installation so it doesn't look like it just hangs

This commit is contained in:
Rodger Castle 2026-05-04 20:02:20 -04:00
parent 0f1837788a
commit c2279d18e1

View File

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