File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
core/src/main/python/wlsdeploy/tool/create Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ class DomainTypedef(object):
3232
3333 JRF_TEMPLATE_REGEX = "^(.*jrf_template[0-9._]*\\ .jar)|(Oracle JRF WebServices Asynchronous services)$"
3434 RESTRICTED_JRF_TEMPLATE_REGEX = "^(Oracle Restricted JRF)$"
35+ JRF_SERVER_GROUP = 'JRF-MAN-SVR'
3536
3637 def __init__ (self , program_name , domain_type ):
3738 """
@@ -108,13 +109,16 @@ def has_jrf_resources(self):
108109
109110 def is_jrf_domain_type (self ):
110111 """
111- Determine if this is a JRF domain type by checking for the JRF extension template.
112+ Determine if this is a JRF domain type by checking for the JRF extension template or
113+ JRF SVR GrOUP.
112114 This returns False for the Restricted JRF domain type.
113115 :return: True if the JRF template is present
114116 """
115117 for template in self .get_extension_templates ():
116118 if re .match (self .JRF_TEMPLATE_REGEX , template ):
117119 return True
120+ if self .JRF_SERVER_GROUP in self .get_server_groups_to_target ():
121+ return True
118122 return False
119123
120124 def is_restricted_jrf_domain_type (self ):
You can’t perform that action at this time.
0 commit comments