Skip to content

Commit

Permalink
fix wrong argument type for fedora installs
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
  • Loading branch information
Alfredo Deza committed Oct 22, 2013
1 parent 26f432c commit 5300604
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ceph_deploy/hosts/fedora/install.py
Expand Up @@ -38,7 +38,7 @@ def install(distro, version_kind, version, adjust_repos):

process.run(
distro.conn,
args=[
[
'rpm',
'-Uvh',
'--replacepkgs',
Expand All @@ -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',
],
)
],
)

0 comments on commit 5300604

Please sign in to comment.