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

26177.1 Files compared

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

26177.2 Comparison summary

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

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

26177.4 Active regular expressions

No regular expressions were active.

26177.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   # Cron Ins tall and s etup
  5  
  6   ---
  7   - name: cr ond instal led
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  latest cro nd version  installed
  12       yum:
  13         name : cronie
  14         stat e: latest
  15     - name:  crond enab led and ru nning
  16       servic e:
  17         name : crond
  18         enab led: true
  19         stat e: started
  20     - name:  Delete cro n.deny
  21       file:  path=/etc/ cron.deny
  22         stat e=absent
  23     - name:  Delete cro n.at
  24       file:  path=/etc/ at.deny
  25         stat e=absent
  26     - name:  Create cro n.allow
  27       copy:
  28         cont ent: ""
  29         dest : /etc/cro n.allow
  30         owne r: root
  31         grou p: root
  32         mode : 0644
  33     - name:  Add root t o cron.all ow
  34       linein file:
  35         path : /etc/cro n.allow
  36         line : 'root'
  37     - name:  Create at. allow
  38       copy:
  39         cont ent: ""
  40         dest : /etc/at. allow
  41         owne r: root
  42         grou p: root
  43         mode : 0644
  44     - name:  Add root t o at.allow
  45       linein file:
  46         path : /etc/at. allow
  47         line : 'root'