Changes to accomadate the localstorage setting at zone level
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/9d2cf017 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/9d2cf017 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/9d2cf017 Branch: refs/heads/master Commit: 9d2cf0171717a8a40c6d3e23e9cc436ad7352ddb Parents: 8ee8fdc Author: Prasanna Santhanam <t...@apache.org> Authored: Mon Aug 27 20:24:33 2012 +0530 Committer: Prasanna Santhanam <t...@apache.org> Committed: Wed Sep 12 18:48:33 2012 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/configGenerator.py | 1 + tools/marvin/marvin/deployDataCenter.py | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/9d2cf017/tools/marvin/marvin/configGenerator.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/configGenerator.py b/tools/marvin/marvin/configGenerator.py index 0e5e4d8..7cda6ae 100644 --- a/tools/marvin/marvin/configGenerator.py +++ b/tools/marvin/marvin/configGenerator.py @@ -64,6 +64,7 @@ class zone(): self.dns2 = None self.internaldns2 = None self.securitygroupenabled = None + self.localstorageenabled = None ''' Guest Vlan range - only advanced zone''' self.vlan = None '''default public network, in advanced mode''' http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/9d2cf017/tools/marvin/marvin/deployDataCenter.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py index 5c72389..038d725 100644 --- a/tools/marvin/marvin/deployDataCenter.py +++ b/tools/marvin/marvin/deployDataCenter.py @@ -276,6 +276,7 @@ class deployDataCenters(): createzone.internaldns2 = zone.internaldns2 createzone.name = zone.name createzone.securitygroupenabled = zone.securitygroupenabled + createzone.localstorageenabled = zone.localstorageenabled createzone.networktype = zone.networktype createzone.guestcidraddress = zone.guestcidraddress