From d5af2f0d736f8e2ffc7b941c6aa2b960b6b3043a Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Tue, 21 Sep 2021 11:51:16 +0200 Subject: [PATCH] pkgpdep: Fix typos, update comments Signed-off-by: Michal Berger Change-Id: I000087b4ecf6f887fb5d5c300215b72eee373115 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9553 Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki --- test/common/config/pkgdep/os/rhel | 7 +++---- test/common/config/pkgdep/pacman | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) 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 }