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

26173.1 Files compared

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

26173.2 Comparison summary

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

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

26173.4 Active regular expressions

No regular expressions were active.

26173.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   # Configur e auditd D ata Retent ion
  5  
  6   ---
  7   - name: Co nfigure au ditd Data  Retention
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  Configure  auditd spa ce_left Ac tion on Lo w Disk Spa ce
  12       linein file:
  13         path : /etc/aud it/auditd. conf
  14         rege xp: '^spac e_left_act ion = SYSL OG'
  15         line : 'space_l eft_action  = EMAIL'
  16     - name:  Configure  auditd adm in_space_l eft Action  on Low Di sk Space
  17       linein file:
  18         path : /etc/aud it/auditd. conf
  19         rege xp: 'admin _space_lef t_action =  SUSPEND'
  20         line : 'admin_s pace_left_ action = S INGLE'
  21     - name:  Configure  auditd flu sh priorit y
  22       linein file:
  23         path : /etc/aud it/auditd. conf
  24         rege xp: '^flus h = INCREM ENTAL_ASYN C'
  25         line : 'flush =  data'
  26     - name:  Configure  auditd to  use audisp d's syslog  plugin
  27       linein file:
  28         path : /etc/aud isp/plugin s.d/syslog .conf
  29         rege xp: '^acti ve = no'
  30         line : 'active  = yes'
  31  
  32