17031. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/11/2017 10:47:23 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

17031.1 Files compared

# Location File Last Modified
1 Tue Apr 11 15:47:23 2017 UTC
2 PS_PPS_Weblogic_Domain\install\domain_template.jar\bin setStartupEnv.sh Fri Oct 7 07:11:04 2016 UTC

17031.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 40
Removed 0 0

17031.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

17031.4 Active regular expressions

No regular expressions were active.

17031.5 Comparison detail

        1   #!/bin/sh
        2  
        3   # WARNING:  This file  is create d by the C onfigurati on Wizard.
        4   # Any chan ges to thi s script m ay be lost  when addi ng extensi ons to thi s configur ation.
        5  
        6   # ******** ********** ********** ********** ********** ********** ********** *****
        7   #   Server  scoped st artup conf iguration.
        8   # ******** ********** ********** ********** ********** ********** ********** *****
        9  
        10   # Associat e all admi n-server s erver-grou ps to Admi nServerSta rtupGroup
        11  
        12   if [ "${ST ARTUP_GROU P}" != ""  ] ; then
        13           if  [ "${STAR TUP_GROUP} " = "BASE- WLS-ADMIN- SVR" ] ; t hen
        14                    STAR TUP_GROUP= "AdminServ erStartupG roup"
        15                    expo rt STARTUP _GROUP
        16           fi
        17   fi
        18  
        19   # Associat e server w ith a star tup group
        20  
        21   if [ "${ST ARTUP_GROU P}" = "" ]  ; then
        22           if  [ "${SERV ER_NAME}"  = "AdminSe rver" ] ;  then
        23                    STAR TUP_GROUP= "AdminServ erStartupG roup"
        24                    expo rt STARTUP _GROUP
        25           fi
        26   fi
        27  
        28   # Startup  parameters  for START UP_GROUP A dminServer StartupGro up
        29  
        30   if [ "${ST ARTUP_GROU P}" = "Adm inServerSt artupGroup " ] ; then
        31           #  POST_CLASS PATH.
        32           if  [ "${POST _CLASSPATH }" != "" ]  ; then
        33                    POST _CLASSPATH ="${POST_C LASSPATH}$ {CLASSPATH SEP}${MW_H OME}/oracl e_common/m odules/com .oracle.ci e.config-w ls-online_ 8.1.0.0.ja r"
        34                    expo rt POST_CL ASSPATH
        35           el se
        36                    POST _CLASSPATH ="${MW_HOM E}/oracle_ common/mod ules/com.o racle.cie. config-wls -online_8. 1.0.0.jar"
        37                    expo rt POST_CL ASSPATH
        38           fi
        39   fi
        40