Skip to content

Commit

Permalink
Merge pull request #113 from alfredodeza/6610
Browse files Browse the repository at this point in the history
fix wrong argument type for fedora installs
  • Loading branch information
zmc committed Oct 22, 2013
2 parents 26f432c + 5300604 commit 02d2e88
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 02d2e88

Please sign in to comment.