17041. 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.

17041.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 stopWebLogic.sh Fri Oct 7 07:11:04 2016 UTC

17041.2 Comparison summary

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

17041.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

17041.4 Active regular expressions

No regular expressions were active.

17041.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   if [ "$1"  != "" ] ;  then
        7           wl sUserID="$ 1"
        8           ex port wlsUs erID
        9           us erID="user name=wlsUs erID,"
        10           sh ift
        11   else
        12           if  [ "${user ID}" != ""  ] ; then
        13                    wlsU serID="${u serID}"
        14                    expo rt wlsUser ID
        15                    user ID="userna me=wlsUser ID,"
        16           fi
        17   fi
        18  
        19   if [ "$1"  != "" ] ;  then
        20           wl sPassword= "$1"
        21           ex port wlsPa ssword
        22           pa ssword="pa ssword=wls Password,"
        23           sh ift
        24   else
        25           if  [ "${pass word}" !=  "" ] ; the n
        26                    wlsP assword="$ {password} "
        27                    expo rt wlsPass word
        28                    pass word="pass word=wlsPa ssword,"
        29           fi
        30   fi
        31  
        32   # set ADMI N_URL
        33  
        34   if [ "$1"  != "" ] ;  then
        35           AD MIN_URL="$ 1"
        36           sh ift
        37   else
        38           if  [ "${ADMI N_URL}" =  "" ] ; the n
        39   ADMIN_URL= "t3://@SER VER_HOST:@ SERVER_POR T"
        40           fi
        41   fi
        42  
        43   # Call set DomainEnv  here becau se we want  to have s hifted out  the envir onment var s above
        44  
        45   DOMAIN_HOM E="@DOMAIN _HOME"
        46  
        47   # Read the  environme nt variabl e from the  console.
        48  
        49   if [ "${do Exit}" = " true" ] ;  then
        50           ex itFlag="do Exit"
        51   else
        52           ex itFlag="no Exit"
        53   fi
        54  
        55   . ${DOMAIN _HOME}/bin /setDomain Env.sh ${e xitFlag}
        56  
        57   umask 026
        58  
        59  
        60   echo "wlsU serID = ja va.lang.Sy stem.geten v('wlsUser ID')" >"sh utdown-${S ERVER_NAME }.py" 
        61   echo "wlsP assword =  java.lang. System.get env('wlsPa ssword')"  >>"shutdow n-${SERVER _NAME}.py"  
        62   echo "conn ect(${user ID} ${pass word} url= '${ADMIN_U RL}', admi nServerNam e='${SERVE R_NAME}')"  >>"shutdo wn-${SERVE R_NAME}.py
        63   echo "shut down('${SE RVER_NAME} ','Server' , ignoreSe ssions='tr ue')" >>"s hutdown-${ SERVER_NAM E}.py" 
        64   echo "exit ()" >>"shu tdown-${SE RVER_NAME} .py" 
        65  
        66   echo "Stop ping Weblo gic Server ..."
        67  
        68   ${JAVA_HOM E}/bin/jav a -classpa th ${FMWCO NFIG_CLASS PATH} ${ME M_ARGS} ${ JVM_D64} $ {JAVA_OPTI ONS} weblo gic.WLST s hutdown-${ SERVER_NAM E}.py  2>&
        69  
        70   echo "Done "
        71  
        72   echo "Stop ping Derby  Server... "
        73  
        74   if [ "${DE RBY_FLAG}"  = "true"  ] ; then
        75           .  ${WL_HOME} /common/de rby/bin/st opNetworkS erver.sh   >"${DOMAIN _HOME}/der byShutdown .log" 2>&1  
        76           ec ho "Derby  server sto pped."
        77   fi
        78  
        79   # Exit thi s script o nly if we  have been  told to ex it.
        80  
        81   if [ "${do ExitFlag}"  = "true"  ] ; then
        82           ex it
        83   fi
        84