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):
32
32
33
33
JRF_TEMPLATE_REGEX = "^(.*jrf_template[0-9._]*\\ .jar)|(Oracle JRF WebServices Asynchronous services)$"
34
34
RESTRICTED_JRF_TEMPLATE_REGEX = "^(Oracle Restricted JRF)$"
35
+ JRF_SERVER_GROUP = 'JRF-MAN-SVR'
35
36
36
37
def __init__ (self , program_name , domain_type ):
37
38
"""
@@ -108,13 +109,16 @@ def has_jrf_resources(self):
108
109
109
110
def is_jrf_domain_type (self ):
110
111
"""
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.
112
114
This returns False for the Restricted JRF domain type.
113
115
:return: True if the JRF template is present
114
116
"""
115
117
for template in self .get_extension_templates ():
116
118
if re .match (self .JRF_TEMPLATE_REGEX , template ):
117
119
return True
120
+ if self .JRF_SERVER_GROUP in self .get_server_groups_to_target ():
121
+ return True
118
122
return False
119
123
120
124
def is_restricted_jrf_domain_type (self ):
You can’t perform that action at this time.
0 commit comments