100. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/18/2018 3:37:03 PM Eastern 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.

100.1 Files compared

# Location File Last Modified
1 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator\authenticator\src\test\docker\jira Dockerfile Tue Jun 12 16:41:44 2018 UTC
2 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator\authenticator\src\test\docker\jira Dockerfile Tue Jun 12 21:07:49 2018 UTC

100.2 Comparison summary

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

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

100.4 Active regular expressions

No regular expressions were active.

100.5 Comparison detail

  1   FROM cento s:6.9
  2  
  3   ENV HOSTNA ME  DNS                       
  4   ENV JAVA_H OME /usr/j ava/latest
  5  
  6   # reponse  file for u nattended  JSD instal lation
  7   COPY conf/ response.v arfile /tm p/conf/
  8  
  9   RUN \
  10       # down load and i nstall JDK
  11       curl - jkL -H "Co okie: orac lelicense= accept-sec urebackup- cookie" ht tp://downl oad.oracle .com/otn-p ub/java/jd k/8u144-b0 1/090f390d da5b47b9b7 21c7dfaa00 8135/jdk-8 u144-linux -x64.rpm >  /tmp/jdk. rpm && \
  12       rpm -i v /tmp/jdk .rpm && \
  13       rm /tm p/jdk.rpm  && \
  14  
  15       # down load and i nstall JSD
  16       curl h ttps://dow nloads.atl assian.com /software/ jira/downl oads/atlas sian-servi cedesk-3.5 .1-x64.bin  > /tmp/ji ra.bin &&  \
  17       chmod  700 /tmp/j ira.bin &&  \
  18       /tmp/j ira.bin -q  -varfile  /tmp/conf/ response.v arfile &&  \
  19       rm /tm p/jira.bin  && \
  20  
  21       # inst all ansibl e
  22       yum -y  install v im epel-re lease && y um -y inst all ansibl e && \
  23  
  24       # crea te conveni ence alias es
  25       echo ' tail -f /a pp/jira/lo gs/catalin a.out' > / usr/local/ bin/jirata il && \
  26       echo ' /etc/init. d/jira sta rt && jira tail' > /u sr/local/b in/jirasta rt && \
  27       echo ' /etc/init. d/jira sto p' > /usr/ local/bin/ jirashutdo wn && \
  28       echo ' jirashutdo wn && jira start' > / usr/local/ bin/jirare start && \
  29       echo ' ansible-pl aybook -v  $*' > /usr /local/bin /play && \
  30       chmod  755 /usr/l ocal/bin/*
  31  
  32   # utility  scripts
  33   COPY bin / tmp/bin
  34  
  35   # jira app lication d ata
  36   ADD build/ jira-appli cation-dat a.bz2 /var /atlassian /applicati on-data/
  37  
  38   # ssoi aut henticator
  39   COPY build /jira-ssoi -authentic ator-bin.t ar.gz /tmp /
  40  
  41   # overwrit e jira con fig
  42   COPY conf/ server.xml  /app/jira /conf/
  43   COPY conf/ setenv.sh  /app/jira/ bin/
  44  
  45   # apache c ertificate
  46   COPY build /apache.cr t /tmp/
  47  
  48   # keystore  for tomca t's use -  see apache /conf/make _key.sh fo r its orig in
  49   COPY build /jira.keys tore /app/ certs/cert 0602017/se rver.keyst ore
  50  
  51   RUN \
  52       # rese t ownershi p of jira  directorie s
  53       chown  -R jira:ji ra /app/ji ra /var/at lassian/ap plication- data/jira  && \
  54  
  55       # inst all apache  cert into  JIRA's ke ystore
  56       keytoo l -nopromp t -importc ert -trust cacerts -a lias apach e -keystor e /app/jir a/jre/lib/ security/c acerts -st orepass ch angeit -fi le /tmp/ap ache.crt & & \
  57       rm -rf  /tmp/apac he.crt &&  \
  58  
  59       # inst all ssoi a uthenticat or
  60       tar -x zvf /tmp/j ira-ssoi-a uthenticat or-bin.tar .gz -C /tm p && \
  61       ansibl e-playbook  -v /tmp/s soi/deploy .yml
  62  
  63   CMD /usr/l ocal/bin/j irastart