From 04e4722016f7b054a995369e970968edad0d9b82 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Fri, 9 May 2025 16:09:12 -0600 Subject: [PATCH] Consolidate python-dotenv installation in system preparation script - Merged the installation of the python3-dotenv library into the main package installation command for streamlined setup. - Removed separate logging for python-dotenv installation, simplifying the script while maintaining user awareness during the process. --- scripts/01_system_preparation.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/01_system_preparation.sh b/scripts/01_system_preparation.sh index de4d182..eb04c42 100755 --- a/scripts/01_system_preparation.sh +++ b/scripts/01_system_preparation.sh @@ -16,11 +16,7 @@ log_info "Installing standard CLI tools..." apt install -y \ htop git curl make unzip ufw fail2ban python3 psmisc whiptail \ build-essential ca-certificates gnupg lsb-release openssl \ - debian-keyring debian-archive-keyring apt-transport-https - -# Install python-dotenv using apt -log_info "Installing python-dotenv library using apt..." -apt install -y python3-dotenv + debian-keyring debian-archive-keyring apt-transport-https python3-dotenv # Configuring Firewall (UFW) log_info "Configuring firewall (UFW)..."