From 0ef41125484ee7e5f5037a8e0099daf8ad30768b Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Fri, 26 Jul 2024 23:58:37 +0200 Subject: [PATCH] Update INSTALL.sh --- version/0.2.3/INSTALL.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/version/0.2.3/INSTALL.sh b/version/0.2.3/INSTALL.sh index 6c09add6..86e17586 100644 --- a/version/0.2.3/INSTALL.sh +++ b/version/0.2.3/INSTALL.sh @@ -1320,17 +1320,16 @@ install_openadmin(){ # on ubuntu24 we need to use overlay instead of devicemapper! OVERLAY=true - # Debian12 + # Debian12 and 11 elif [ -f /etc/debian_version ]; then echo "Installing PIP and Git" - apt-get install git pip -y > /dev/null 2>&1 + apt-get install git pip python3-yaml -y > /dev/null 2>&1 echo "Downloading files for Debian and python version $current_python_version" git clone -b debian-$current_python_version --single-branch https://github.com/stefanpejcic/openadmin $OPENPADMIN_DIR cd $OPENPADMIN_DIR debug_log pip install --default-timeout=3600 -r requirements.txt debug_log pip install --default-timeout=3600 -r requirements.txt --break-system-packages # other - # other else echo "Unsuported OS. Currently only Ubuntu22-24 and Debian11-12 are supported." echo 0 @@ -1460,5 +1459,3 @@ run_custom_postinstall_script # END main script execution service docker restart #needed for debian after csf reload - -