]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
fix wrong argument type for fedora installs 113/head
authorAlfredo Deza <alfredo.deza@inktank.com>
Tue, 22 Oct 2013 13:18:30 +0000 (09:18 -0400)
committerAlfredo Deza <alfredo.deza@inktank.com>
Tue, 22 Oct 2013 13:18:30 +0000 (09:18 -0400)
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
ceph_deploy/hosts/fedora/install.py

index 880f91165aaa6da90176a213d83addfd29492a97..96730edaa991cc408071bdbaf976cd882b86a1da 100644 (file)
@@ -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',
-            ],
-        )
+        ],
+    )