diff --git a/tests/letstest/scripts/bootstrap_os_packages.sh b/tests/letstest/scripts/bootstrap_os_packages.sh index a57bd0602..7ad93f63e 100755 --- a/tests/letstest/scripts/bootstrap_os_packages.sh +++ b/tests/letstest/scripts/bootstrap_os_packages.sh @@ -112,18 +112,6 @@ BootstrapRpmPython3() { BootstrapRpmCommonBase "$python_pkgs" } -BootstrapSuseCommon() { - zypper -nq in -l \ - python3 \ - python3-devel \ - python3-virtualenv \ - gcc \ - augeas-lenses \ - libopenssl-devel \ - libffi-devel \ - ca-certificates -} - # Set Bootstrap to the function that installs OS dependencies on this system. if [ -f /etc/debian_version ]; then Bootstrap() { @@ -134,10 +122,7 @@ elif [ -f /etc/redhat-release ]; then Bootstrap() { BootstrapRpmPython3 } -elif [ -f /etc/os-release ] && grep -q openSUSE /etc/os-release; then - Bootstrap() { - BootstrapSuseCommon - } + fi Bootstrap