From 94fd79cd289a617346f799489a83cba603a35067 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Wed, 6 Jan 2021 08:51:33 -0500 Subject: [PATCH] originally had sshpass package install reveresed, fixed it here --- setup/so-setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-setup b/setup/so-setup index 4c5760856..7ab87a23a 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -128,9 +128,9 @@ if [[ -f automation/$automation && $(basename $automation) == $automation ]]; th if [[ ! $is_iso ]]; then echo "Installing sshpass for automated testing." >> $setup_log 2>&1 if [ "$OS" == ubuntu ]; then - yum -y install sshpass >> $setup_log 2>&1 - else apt-get -y install sshpass >> $setup_log 2>&1 + else + yum -y install sshpass >> $setup_log 2>&1 fi fi fi