diff --git a/test/common/config/pkgdep/os/rhel b/test/common/config/pkgdep/os/rhel index f1901f6c8..a1430ccae 100644 --- a/test/common/config/pkgdep/os/rhel +++ b/test/common/config/pkgdep/os/rhel @@ -1,8 +1,7 @@ pre_install() { - if [[ $INTSALL_TSOCKS == true ]]; then - # currently, tsocks package is retired in fedora 31, so don't exit in case - # installation failed - # FIXME: Review when fedora starts to successfully build this package again. + if [[ $INSTALL_TSOCKS == true ]]; then + # tsocks package is not available in latest fedora releases, so don't exit in case + # installation failed. install tsocks || echo "Installation of the tsocks package failed, proxy may not be available" fi if [[ $ID == centos ]] && (( VERSION_ID == 8 )); then diff --git a/test/common/config/pkgdep/pacman b/test/common/config/pkgdep/pacman index d6d3d0c53..08e6acf27 100644 --- a/test/common/config/pkgdep/pacman +++ b/test/common/config/pkgdep/pacman @@ -11,7 +11,7 @@ install() { } pre_install() { - if [[ $INTSALL_TSOCKS == true ]]; then + if [[ $INSTALL_TSOCKS == true ]]; then install tsocks fi }