From 7db68204dce6e18fd8de86d5fc9ce94b3e6ad368 Mon Sep 17 00:00:00 2001 From: Kedar Bidarkar Date: Fri, 13 Jul 2018 16:27:32 +0530 Subject: [PATCH] Install wget package on capsule explicitly Signed-off-by: Kedar Bidarkar --- automation_tools/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/automation_tools/__init__.py b/automation_tools/__init__.py index c77015d44..b9db8b6ef 100644 --- a/automation_tools/__init__.py +++ b/automation_tools/__init__.py @@ -1612,6 +1612,7 @@ def setup_capsule(satellite_fqdn=None, capsule_fqdn=None, capsule_org=None, run('yum -y localinstall ' 'http://{0}/pub/katello-ca-consumer-latest.noarch.rpm' .format(satellite_fqdn)) + run('yum -y install wget', warn_only=True) run('wget -O /root/capsule_script.sh http://{0}/pub/capsule_script.sh' .format(satellite_fqdn)) run('wget -O /root/{1}-certs.tar http://{0}/pub/{1}-certs.tar'