Repository: cloudstack Updated Branches: refs/heads/master 27bc79174 -> 6f9b3cc9d
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/master Commit: 6f9b3cc9d13bd1bc002ce0afad3ed416b590f882 Parents: 27bc791 Author: Ashutosh K <[email protected]> Authored: Wed Jul 16 20:30:12 2014 -0400 Committer: Girish Shilamkar <[email protected]> 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):
