From 46ce247e7387bdf38147f5a0542acd8643811755 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 27 Aug 2012 20:24:33 +0530 Subject: [PATCH] Changes to accomadate the localstorage setting at zone level reviewed-by: Marvin --- tools/marvin/marvin/configGenerator.py | 1 + tools/marvin/marvin/deployDataCenter.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/marvin/marvin/configGenerator.py b/tools/marvin/marvin/configGenerator.py index 57794740ded..37c28b8fc3a 100644 --- a/tools/marvin/marvin/configGenerator.py +++ b/tools/marvin/marvin/configGenerator.py @@ -59,6 +59,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''' diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py index a2f587860ea..b76f1b579df 100644 --- a/tools/marvin/marvin/deployDataCenter.py +++ b/tools/marvin/marvin/deployDataCenter.py @@ -271,6 +271,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