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() {