CLOUDSTACK-7010: Add domain to createZones in marvin

This commit is contained in:
John Dilley 2014-06-30 14:23:50 +00:00 committed by Santhosh Edukulla
parent a9b3ab089d
commit 63ba1ddfb9
2 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,7 @@ class zone(object):
self.pods = []
self.secondaryStorages = []
self.cacheStorages = []
self.domain = None
class trafficType(object):

View File

@ -695,6 +695,7 @@ class DeployDataCenters(object):
zonecmd.securitygroupenabled = zone.securitygroupenabled
zonecmd.localstorageenabled = zone.localstorageenabled
zonecmd.networktype = zone.networktype
zonecmd.domain = zone.domain
if zone.securitygroupenabled != "true":
zonecmd.guestcidraddress = zone.guestcidraddress
zoneId = self.createZone(zonecmd)