From 0c0a50203f881d7271a7fa2e36e6667bf07573cf Mon Sep 17 00:00:00 2001 From: Late Night Defender Date: Thu, 16 May 2024 14:42:38 +0700 Subject: [PATCH] remove Python dependencies since we don't need them anymore --- inst_deps.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/inst_deps.go b/inst_deps.go index cb8606c..3053a4d 100644 --- a/inst_deps.go +++ b/inst_deps.go @@ -6,28 +6,28 @@ import( ) func instDepsUbuntu() { - fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Ubuntu repo\033[0m\n") - ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl") + fmt.Printf("\033[1;32mInstalling OpenSSL from Ubuntu repo\033[0m\n") + ExecSystem("/usr/bin/apt install -y openssl") } func instDepsDebian() { - fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Debian repo\033[0m\n") - ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl") + fmt.Printf("\033[1;32mInstalling OpenSSL from Debian repo\033[0m\n") + ExecSystem("/usr/bin/apt install -y openssl") } func instDepsFedora() { - fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Fedora repo\033[0m\n") - ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl") + fmt.Printf("\033[1;32mInstalling OpenSSL from Fedora repo\033[0m\n") + ExecSystem("/usr/bin/dnf install -y openssl") } func instDepsRedHat() { - fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n") - ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl") + fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n") + ExecSystem("/usr/bin/dnf install -y openssl") } func instDepsOpenSUSE() { - fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n") - ExecSystem("/usr/bin/zypper install -y python3-pymongo python3-psutil openssl") + fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n") + ExecSystem("/usr/bin/zypper install -y openssl") } func instDockerUbuntu() {