From 7af97e56a276d8660d340384d7b560e5c4810b80 Mon Sep 17 00:00:00 2001 From: Amoelle Date: Wed, 9 Apr 2025 05:05:56 +0300 Subject: [PATCH] fix debian installation --- scripts/dependencies.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/dependencies.sh b/scripts/dependencies.sh index a71b967..e64a6a7 100755 --- a/scripts/dependencies.sh +++ b/scripts/dependencies.sh @@ -56,9 +56,6 @@ install_debian_dependencies() { PACKAGES=("apache2" "php" "libapache2-mod-php" "git" "build-essential" "curl" "ethtool") sudo DEBIAN_FRONTEND=noninteractive apt install -y "${PACKAGES[@]}" - # Enable PHP module - sudo a2enmod php - # Enable Apache modules sudo a2enmod rewrite }