Skip to content

Commit e6529a5

Browse files
authored
Merge pull request #207 from oracle/jira-31-domain-type-not-displayed
JIRA WDT-31 Corrected logging when default domain type is used
2 parents c3beefb + 10ee7ee commit e6529a5

File tree

7 files changed

+21
-14
lines changed

7 files changed

+21
-14
lines changed

installer/src/main/bin/createDomain.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,11 @@ IF DEFINED DOMAIN_TYPE (
221221
SET USE_JRF_WLST=TRUE
222222
GOTO domain_type_recognized
223223
)
224-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
225-
SET USE_JRF_WLST=TRUE
226224
)
227225

226+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
227+
SET USE_JRF_WLST=TRUE
228+
228229
:domain_type_recognized
229230
IF "%USE_JRF_WLST%" == "TRUE" (
230231
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/deployApps.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,11 @@ IF DEFINED DOMAIN_TYPE (
219219
SET USE_JRF_WLST=TRUE
220220
GOTO domain_type_recognized
221221
)
222-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
223-
SET USE_JRF_WLST=TRUE
224222
)
225223

224+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
225+
SET USE_JRF_WLST=TRUE
226+
226227
:domain_type_recognized
227228
IF "%USE_JRF_WLST%" == "TRUE" (
228229
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/discoverDomain.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,11 @@ IF DEFINED DOMAIN_TYPE (
207207
SET USE_JRF_WLST=TRUE
208208
GOTO domain_type_recognized
209209
)
210-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
211-
SET USE_JRF_WLST=TRUE
212210
)
213211

212+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
213+
SET USE_JRF_WLST=TRUE
214+
214215
:domain_type_recognized
215216
IF "%USE_JRF_WLST%" == "TRUE" (
216217
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/encryptModel.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,11 @@ IF DEFINED DOMAIN_TYPE (
215215
SET USE_JRF_WLST=TRUE
216216
GOTO domain_type_recognized
217217
)
218-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
219-
SET USE_JRF_WLST=TRUE
220218
)
221219

220+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
221+
SET USE_JRF_WLST=TRUE
222+
222223
:domain_type_recognized
223224
IF "%USE_JRF_WLST%" == "TRUE" (
224225
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/injectVariables.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,11 @@ IF DEFINED DOMAIN_TYPE (
210210
SET USE_JRF_WLST=TRUE
211211
GOTO domain_type_recognized
212212
)
213-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
214-
SET USE_JRF_WLST=TRUE
215213
)
216214

215+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
216+
SET USE_JRF_WLST=TRUE
217+
217218
:domain_type_recognized
218219
IF "%USE_JRF_WLST%" == "TRUE" (
219220
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/updateDomain.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,11 @@ IF DEFINED DOMAIN_TYPE (
219219
SET USE_JRF_WLST=TRUE
220220
GOTO domain_type_recognized
221221
)
222-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
223-
SET USE_JRF_WLST=TRUE
224222
)
225223

224+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
225+
SET USE_JRF_WLST=TRUE
226+
226227
:domain_type_recognized
227228
IF "%USE_JRF_WLST%" == "TRUE" (
228229
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

installer/src/main/bin/validateModel.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,11 @@ IF DEFINED DOMAIN_TYPE (
206206
SET USE_JRF_WLST=TRUE
207207
GOTO domain_type_recognized
208208
)
209-
ECHO Domain type %DOMAIN_TYPE% not recognized by shell script...assuming JRF is required
210-
SET USE_JRF_WLST=TRUE
211209
)
212210

211+
ECHO Domain type "%DOMAIN_TYPE%" not recognized by shell script... assuming JRF is required
212+
SET USE_JRF_WLST=TRUE
213+
213214
:domain_type_recognized
214215
IF "%USE_JRF_WLST%" == "TRUE" (
215216
IF EXIST "%ORACLE_HOME%\oracle_common\common\bin\wlst.cmd" (

0 commit comments

Comments
 (0)