From 5300604533cb5e766f860b88737f558d030dea54 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 22 Oct 2013 09:18:30 -0400 Subject: [PATCH] fix wrong argument type for fedora installs Signed-off-by: Alfredo Deza --- ceph_deploy/hosts/fedora/install.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ceph_deploy/hosts/fedora/install.py b/ceph_deploy/hosts/fedora/install.py index 880f9116..96730eda 100644 --- a/ceph_deploy/hosts/fedora/install.py +++ b/ceph_deploy/hosts/fedora/install.py @@ -38,7 +38,7 @@ def install(distro, version_kind, version, adjust_repos): process.run( distro.conn, - args=[ + [ 'rpm', '-Uvh', '--replacepkgs', @@ -48,16 +48,16 @@ def install(distro, version_kind, version, adjust_repos): url=url, release=release, ), - ] - ) + ] + ) process.run( distro.conn, - args=[ + [ 'yum', '-y', '-q', 'install', 'ceph', - ], - ) + ], + )