From b2cd09f3fa53a280203fecf767a2d4f0ca14232b Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 18 Jan 2025 16:59:58 +0100 Subject: [PATCH] Update install.sh --- install.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/install.sh b/install.sh index aaab0ca4..b22f7bb3 100644 --- a/install.sh +++ b/install.sh @@ -30,8 +30,7 @@ export TERM=xterm-256color # bug fix: CUSTOM_VERSION=false # default version is latest INSTALL_TIMEOUT=600 # after 10min, consider the install failed DEBUG=false # verbose output for debugging failed install -SKIP_APT_UPDATE=false -SKIP_IMAGES=false # they are auto-pulled on account creation +SKIP_APT_UPDATE=false # they are auto-pulled on account creation REPAIR=false LOCALES=true # only en NO_SSH=false # deny port 22 @@ -397,7 +396,6 @@ parse_args() { echo " --skip-firewall Skip installing UFW or CSF - Only do this if you will set another external firewall!" echo " --csf Install and setup ConfigServer Firewall (default from >0.2.3)" echo " --ufw Install and setup Uncomplicated Firewall (was default in <0.2.3)" - echo " --skip-images Skip installing openpanel/nginx and openpanel/apache docker images." echo " --skip-blacklists Do not set up IP sets and blacklists." echo " --skip-ssl Skip SSL setup." echo " --with_modsec Enable ModSecurity for Nginx." @@ -461,9 +459,6 @@ while [[ $# -gt 0 ]]; do UFW_SETUP=true CSF_SETUP=false ;; - --skip-images) - SKIP_IMAGES=true - ;; --skip-blacklists) IPSETS=false ;;