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

93.1 Files compared

# Location File Last Modified
1 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator\authenticator\src\test\docker\jira\bin init.sh Tue Jun 12 16:41:47 2018 UTC
2 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator\authenticator\src\test\docker\jira\bin init.sh Fri Jun 15 21:04:47 2018 UTC

93.2 Comparison summary

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

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

93.4 Active regular expressions

No regular expressions were active.

93.5 Comparison detail

  1   #!/usr/bin /env bash
  2  
  3   # define t he build d irectory r elative as  an absolu te path
  4   builddir=$ (realpath  $(dirname  $0)/../)/b uild
  5  
  6   # create t he build d irectory i f it doesn 't exist
  7   [ ! -d ${b uilddir} ]  && mkdir  ${builddir }
  8  
  9   # download  jira inst aller
  10   tarball_ve rsion=1.0
  11   datasrc=ht tps:// DNS                 : PORT /nexus/ser vice/local /repositor ies/ci/con tent/ntrt/ ssoi/jira- applicatio n-data/${t arball_ver sion}/jira -applicati on-data-${ tarball_ve rsion}.bz2
  12   datadest=$ {builddir} /jira-appl ication-da ta.bz2
  13   shasrc=${d atasrc}.sh a1
  14   shadest=${ datadest}. sha1
  15  
  16   # download  the data  file only  if it's be en modifie d
  17   curl -ksv  -u devtest :devtest - z ${datade st} -o ${d atadest} $ {datasrc}
  18  
  19   # always d ownload th e checksum
  20   curl -ks - u devtest: devtest -o  ${shadest } ${shasrc }
  21  
  22   # verify t he data fi le is inta ct
  23   echo 'Vali dating sha 1 checksum '
  24   echo $(cat  ${shadest }) ${datad est} | sha 1sum -c -