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

26194.1 Files compared

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

26194.2 Comparison summary

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

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

26194.4 Active regular expressions

No regular expressions were active.

26194.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   # Verify I ntegrity w ith AIDE
  5  
  6   ---
  7   - name: Ve rify Integ rity with  AIDE
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  "Ensure ai de is inst alled"
  12       packag e:
  13         name ="{{item}} "
  14         stat e=present
  15       with_i tems:
  16         - ai de
  17     - name:  Initialize  AIDE
  18       comman d: /usr/sb in/aide -- init
  19     - name:  copy aide- check
  20       copy:
  21         src:  ../files/ aide-check
  22         dest : /etc/cro n.daily/
  23         owne r: root
  24         grou p: root
  25         mode : 0750
  26     - name:  Edit aide. conf
  27       linein file:
  28         path : /etc/aid e.conf
  29         back up: yes
  30         inse rtafter: ' ^ALLXTRAHA SHES ='
  31         line : 'ALL = p +i+n+u+g+s +m+S+sha51 2+acl+xatt rs'
  32     - name:  Set bin to  all/sbin
  33       linein file:
  34         path : /etc/aid e.conf
  35         back refs: yes
  36         rege xp: '^/bin /    CONTE NT_EX'
  37         line : '/bin/     ALL'
  38     - name:  Set sbin t o all
  39       linein file:
  40         path : /etc/aid e.conf
  41         back refs: yes
  42         rege xp: '^/sbi n/   CONTE NT_EX'
  43         line : '/sbin/    ALL'
  44