You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by hu...@apache.org on 2014/07/17 10:11:21 UTC

[37/39] git commit: updated refs/heads/vpc-toolkit-hugo to 34bed5f

CLOUDSTACK-7108: Reading provisioningtype for disk offering in base.py


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6f9b3cc9
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6f9b3cc9
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6f9b3cc9

Branch: refs/heads/vpc-toolkit-hugo
Commit: 6f9b3cc9d13bd1bc002ce0afad3ed416b590f882
Parents: 27bc791
Author: Ashutosh K <as...@clogeny.com>
Authored: Wed Jul 16 20:30:12 2014 -0400
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Wed Jul 16 20:41:02 2014 -0400

----------------------------------------------------------------------
 tools/marvin/marvin/lib/base.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6f9b3cc9/tools/marvin/marvin/lib/base.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/lib/base.py b/tools/marvin/marvin/lib/base.py
index fe257f0..e9d5bb4 100755
--- a/tools/marvin/marvin/lib/base.py
+++ b/tools/marvin/marvin/lib/base.py
@@ -1954,6 +1954,9 @@ class DiskOffering:
         if "tags" in services:
             cmd.tags = services["tags"]
 
+        if "provisioningtype" in services:
+            cmd.provisioningtype = services["provisioningtype"]
+
         return DiskOffering(apiclient.createDiskOffering(cmd).__dict__)
 
     def delete(self, apiclient):