Removed --quiet from package installation so it doesn't look like it just hangs
This commit is contained in:
parent
0f1837788a
commit
c2279d18e1
@ -134,16 +134,16 @@ exec > >(tee -a "$LOG_FILE") 2>&1
|
|||||||
banner "Step 1/7 — Installing packages"
|
banner "Step 1/7 — Installing packages"
|
||||||
|
|
||||||
info "Updating system packages…"
|
info "Updating system packages…"
|
||||||
dnf -y update --quiet
|
dnf -y update
|
||||||
|
|
||||||
info "Installing EPEL repository…"
|
info "Installing EPEL repository…"
|
||||||
dnf -y install epel-release --quiet
|
dnf -y install epel-release
|
||||||
|
|
||||||
info "Installing Nginx, fail2ban, certbot, and utilities…"
|
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
|
if $USE_SSL; then
|
||||||
dnf -y install certbot python3-certbot-nginx --quiet
|
dnf -y install certbot python3-certbot-nginx
|
||||||
fi
|
fi
|
||||||
|
|
||||||
success "Packages installed."
|
success "Packages installed."
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user