From: Alfredo Deza Date: Tue, 22 Oct 2013 13:18:30 +0000 (-0400) Subject: fix wrong argument type for fedora installs X-Git-Tag: v1.3~10^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F113%2Fhead;p=ceph-deploy.git fix wrong argument type for fedora installs Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/hosts/fedora/install.py b/ceph_deploy/hosts/fedora/install.py index 880f911..96730ed 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', - ], - ) + ], + )