We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 483bd2c + c7ded8d commit 125d120Copy full SHA for 125d120
core/src/main/python/wlsdeploy/tool/create/domain_creator.py
@@ -345,6 +345,12 @@ def __create_domain(self):
345
self.library_helper.install_domain_libraries()
346
self.library_helper.extract_classpath_libraries()
347
self.wlsroles_helper.process_roles()
348
+ if os.environ.has_key('__WLSDEPLOY_STORE_MODEL__'):
349
+ os.makedirs(self.model_context.get_domain_home() + os.sep + 'wlsdeploy')
350
+ fh = open(self.model_context.get_domain_home() + os.sep + 'wlsdeploy' + os.sep + 'domain_model.json', 'w')
351
+ fh.write(str(self.model.get_model()))
352
+ fh.close()
353
+
354
self.logger.exiting(class_name=self.__class_name, method_name=_method_name)
355
return
356
0 commit comments