26213. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/14/2018 1:18:38 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.

26213.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks umask_settings.yml Tue Mar 27 23:51:06 2018 UTC
2 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks umask_settings.yml Tue May 8 03:19:14 2018 UTC

26213.2 Comparison summary

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

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

26213.4 Active regular expressions

No regular expressions were active.

26213.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   # Ensure D efault Uma sk setting
  5  
  6   ---
  7   - name: En sure Defau lt Umask s ettings
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  Add Umask  Comment to  /etc/bash rc.
  12       linein file:
  13         back up: yes
  14         inse rtbefore:  'SHELL=/bi n/bash'
  15         path : /etc/bas hrc
  16         line : '# Set d efault per missions t o exclude  world rwx  and group  w - ## CRI SP Baselin e'
  17     - name:  Add umask  to /etc/ba shrc
  18       linein file:
  19         inse rtafter: ' # Set defa ult permis sions to e xclude wor ld rwx and  group w -  ## CRISP  Baseline'
  20         path : /etc/bas hrc
  21         line : 'umask 0 77'
  22     - name:  Adding a c ommented l ine after  the umask  in /etc/ba shrc
  23       linein file:
  24         inse rtafter: ' umask 077'
  25         path : /etc/bas hrc
  26         line : '#'
  27     - name:  Tightening  existing  Umask in / etc/csh.cs hrc.
  28       linein file:
  29         path : /etc/csh .cshrc
  30         rege xp: 'umask  .*'
  31         line : 'umask 0 77'
  32     - name:  Tightening  existing  Umask in / etc/csh.lo gin.
  33       linein file:
  34         path : /etc/csh .login
  35         inse rtafter: ' EOF'
  36         line : 'umask 0 77'
  37  
  38     - name:  Add Umask  Comment to  /etc/prof ile.
  39       linein file:
  40         back up: yes
  41         inse rtafter: ' EOF'
  42         path : /etc/pro file
  43         line : '# Set d efault per missions t o exclude  world rwx  and group  w - ## CRI SP Baselin e'
  44     - name:  Add umask  to /etc/pr ofile
  45       linein file:
  46         inse rtafter: ' # Set defa ult permis sions to e xclude wor ld rwx and  group w -  ## CRISP  Baseline'
  47         path : /etc/pro file
  48         line : 'umask 0 77'