Resolve issues with services creation

Change-Id: I1a3a754e17de0e833930a122422c58e550854b23
This commit is contained in:
Serg Melikyan 2013-06-10 15:57:51 +04:00
parent 808c09af4d
commit 851ea444e6
1 changed files with 3 additions and 3 deletions

View File

@ -206,7 +206,7 @@ class SystemServices(object):
if not 'services' in env_description:
env_description['services'] = {}
if not 'webServers' in env_description['services']:
if not 'aspNetApps' in env_description['services']:
env_description['services']['aspNetApps'] = []
env_description['services']['aspNetApps'].append(aspApp)
@ -240,7 +240,7 @@ class SystemServices(object):
if not 'services' in env_description:
env_description['services'] = {}
if not 'webServerFarmss' in env_description['services']:
if not 'webServerFarms' in env_description['services']:
env_description['services']['webServerFarms'] = []
env_description['services']['webServerFarms'].append(web_server_farm)
@ -274,7 +274,7 @@ class SystemServices(object):
if not 'services' in env_description:
env_description['services'] = {}
if not 'webServers' in env_description['services']:
if not 'aspNetAppFarms' in env_description['services']:
env_description['services']['aspNetAppFarms'] = []
env_description['services']['aspNetAppFarms'].append(aspApp_farm)