From: Alfredo Deza Date: Mon, 4 Nov 2013 15:01:21 +0000 (-0500) Subject: make sure CentOS installs wget before installing anything X-Git-Tag: v1.3.1~5^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b02eebb3fbe9860038173d2da5f5fe3bb63a2c3a;p=ceph-deploy.git make sure CentOS installs wget before installing anything Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/hosts/centos/install.py b/ceph_deploy/hosts/centos/install.py index 1549f4c..b570741 100644 --- a/ceph_deploy/hosts/centos/install.py +++ b/ceph_deploy/hosts/centos/install.py @@ -6,6 +6,9 @@ def install(distro, version_kind, version, adjust_repos): release = distro.release machine = distro.machine_type + # Even before EPEL, make sure we have `wget` + pkg_managers.yum(distro.conn, 'wget') + # Get EPEL installed before we continue: if adjust_repos: install_epel(distro)