]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
use dev option instead of dev-commit 12514/head
authorVasu Kulkarni <vasu@redhat.com>
Thu, 15 Dec 2016 22:11:00 +0000 (14:11 -0800)
committerVasu Kulkarni <vasu@redhat.com>
Thu, 15 Dec 2016 22:11:00 +0000 (14:11 -0800)
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
qa/tasks/ceph_deploy.py

index 9453c49a5a3d4c83afa2c7c92f50b0cb5e1d7329..c0ea784234617eb28e7d7cbcff261fb1e10acddb 100644 (file)
@@ -272,12 +272,12 @@ def build_ceph_cluster(ctx, config):
                         ceph_admin, conf_path, lines, sudo=True)
 
         # install ceph
-        ceph_sha = ctx.config['sha1']
-        devcommit = '--dev-commit={sha}'.format(sha=ceph_sha)
+        dev_branch = ctx.config['branch']
+        branch = '--dev={branch}'.format(branch=dev_branch)
         if ceph_branch:
             option = ceph_branch
         else:
-            option = devcommit
+            option = branch
         install_nodes = './ceph-deploy install ' + option + " " + all_nodes
         estatus_install = execute_ceph_deploy(install_nodes)
         if estatus_install != 0: