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

26200.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks ntp.yml Tue Mar 27 23:51:06 2018 UTC
2 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks ntp.yml Thu May 10 16:28:16 2018 UTC

26200.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 6 100
Changed 5 10
Inserted 0 0
Removed 0 0

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

26200.4 Active regular expressions

No regular expressions were active.

26200.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 11 Oct 2 017
  3   #
  4   # Configur e NTP Serv er if Nece ssary
  5  
  6   ---
  7   - name: Co nfigure NT P Server i f Necessar y
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  latest ntp d version  installed
  12       yum:
  13         name : ntp
  14         stat e: latest
  15     - name:  Disable ip v6
  16       linein file:
  17         path : /etc/ntp .conf
  18         back up: yes
  19         back refs: yes
  20         rege xp: '^rest rict ::1'
  21         line : '#restri ct ::1'
  22     - name:  Set NTP Se rver 0
  23       linein file:
  24         path : /etc/ntp .conf
  25         back refs: yes
  26         rege xp: '^serv er 0.rhel. pool.ntp.o rg iburst'
  27           line: ' DNS . URL  iburst mi npoll 6 ma xpoll 10'
  28     - name:  Set NTP Se rver 1
  29       linein file:
  30         path : /etc/ntp .conf
  31         back refs: yes
  32         rege xp: '^serv er 1.rhel. pool.ntp.o rg iburst'
  33           line: ' DNS . URL  iburst mi npoll 6 ma xpoll 10'
  34     - name:  Set NTP Se rver 2
  35       linein file:
  36         path : /etc/ntp .conf
  37         back refs: yes
  38         rege xp: '^serv er 2.rhel. pool.ntp.o rg iburst'
  39           line: ' DNS . URL  iburst mi npoll 6 ma xpoll 10'
  40     - name:  Set NTP Se rver 3
  41       linein file:
  42         path : /etc/ntp .conf
  43         back refs: yes
  44         rege xp: '^serv er 3.rhel. pool.ntp.o rg iburst'
  45           line: ' DNS . URL  iburst mi npoll 6 ma xpoll 10'
  46     - name:  Disable ch ronyd
  47       servic e:
  48         name : chronyd
  49         enab led: false
  50         stat e: stopped
  51     - name:  NTP enable d and runn ing
  52       servic e:
  53         name : ntpd
  54         enab led: true
  55         stat e: started