26178. EPMO Open Source Coordination Office Redaction File Detail Report

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

26178.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks directories-Permissions-n-Owners.yml Tue Mar 27 23:51:06 2018 UTC
2 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks directories-Permissions-n-Owners.yml Tue May 8 03:18:37 2018 UTC

26178.2 Comparison summary

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

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

26178.4 Active regular expressions

No regular expressions were active.

26178.5 Comparison detail

  1   # Ansible  Playbook
  2   # David Ho lton, Half aker -  PII                     8 Nov 2017
  3  
  4   # This pla ybook is u sed for te sting Ansi ble setup  by returni ng
  5   # the host name of th e nodes in  the inven tory.
  6   #
  7  
  8   ---
  9     - name:  Set sticky  bit on al l World-Wr itable dir ectories
  10       hosts:  rhel7
  11       become : yes
  12       tasks:
  13         - na me: set st icky bit o n world wr itable dir ectories
  14           sh ell: find  / -path /p roc -prune  -o -perm  -002 -type  d -exec c hmod +t {}  \;
  15         #- n ame: list  the direct ories
  16         #  s hell: find  / -path / proc -prun e -o -path  /vagrant  -prune -o  -perm -002  -type d - exec ls -l Ld {} \;
  17         #  r egister: f ound1
  18         #- d ebug: var= found1.std out_lines
  19  
  20         #- n ame: set s ticky bit  on found d irectories
  21         #  f ile:
  22         #     path: "{{  found1 }} "
  23         #     mode: o+t
  24         #     state: di rectory
  25         - na me: Ensure  public di rectories  are owned  by a syste m account
  26           sh ell: find  / -xdev -p ath /proc  -prune -o  -perm -000 2 -type d  -uid +499  -exec chow n root {}  \;