From 6585d6320ca4f0c37ae62dfc60fe2eb0cd42647c Mon Sep 17 00:00:00 2001 From: Wes Hayutin Date: Tue, 12 Feb 2019 09:35:06 -0700 Subject: [PATCH] bindep can be called w/o -f file other bindep related files like other_requirments.txt have been removed. We can just use defaults now Change-Id: I2aa1c9be9fd6b95fc304fcebaf9b8d407d740341 --- install-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-deps.sh b/install-deps.sh index 1f7a398b5..66b672113 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -198,13 +198,13 @@ install_package_deps_via_bindep(){ echo "install_package_deps_via_bindep" sudo -n true && passwordless_sudo="1" || passwordless_sudo="0" if [ "$passwordless_sudo" == "1" ] || [ "$USER_OVERRIDE_SUDO_CHECK" == "1" ]; then - bindep -b -f bindep.txt || sudo $(package_manager) -y install `bindep -b -f bindep.txt`; + bindep -b || sudo $(package_manager) -y install `bindep -b`; # EPEL will NOT be installed on any nodepool nodes. # EPEL could be installed in the same transaction as other packages on CentOS/RHEL # This can leave the system with an older ansible version. Ansible 2.7+ required # Run through the deps and update them yum-config-manager enable epel || true - sudo $(package_manager) -y update `bindep -b -l newline -f bindep.txt` + sudo $(package_manager) -y update `bindep -b -l newline` else print_sudo_warning fi