added support for ispersistent parameter for networkoffering Signed-off-by: Prasanna Santhanam <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/7b5daaea Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/7b5daaea Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/7b5daaea Branch: refs/heads/ui-restyle Commit: 7b5daaea2011932a5a6a6ee5b6c93b593c53e522 Parents: 56ccb28 Author: Anshul Gangwar <[email protected]> Authored: Fri Sep 20 12:26:15 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Tue Oct 15 13:22:42 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/integration/lib/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/7b5daaea/tools/marvin/marvin/integration/lib/base.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index 0d52224..4f15137 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -1514,7 +1514,8 @@ class NetworkOffering: cmd.specifyVlan = services["specifyVlan"] if "specifyIpRanges" in services: cmd.specifyIpRanges = services["specifyIpRanges"] - + if "ispersistent" in services: + cmd.ispersistent = services["ispersistent"] if "egress_policy" in services: cmd.egressdefaultpolicy = services["egress_policy"]
