From ba4aab352f2f2dda000337b53c94cffa81784d7c Mon Sep 17 00:00:00 2001 From: "Og B. Maciel" Date: Wed, 25 Feb 2015 10:40:18 -0500 Subject: [PATCH] Removed redundant calls to install libvirt. The package ``libvirt`` should only be installed by the ``setup_default_capsule`` task. --- automation_tools/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation_tools/__init__.py b/automation_tools/__init__.py index 63aee104a..f980cefaf 100644 --- a/automation_tools/__init__.py +++ b/automation_tools/__init__.py @@ -790,7 +790,7 @@ def downstream_install(admin_password=None): manage_repos() # Install required packages for the installation - run('yum install -y katello libvirt') + run('yum install -y katello') run('katello-installer -v -d --foreman-admin-password="{0}"'.format( admin_password)) @@ -821,7 +821,7 @@ def cdn_install(): manage_repos(cdn=True) # Install required packages for the installation - run('yum install -y katello libvirt') + run('yum install -y katello') run('katello-installer -v -d --foreman-admin-password="{0}"'.format( admin_password))