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

26181.1 Files compared

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

26181.2 Comparison summary

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

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

26181.4 Active regular expressions

No regular expressions were active.

26181.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   # 6.14.17  Disable ip v6 and 6.1 4.23.1 Dis able Zeroc onf Networ king
  5  
  6   ---
  7   - name: Di sable ipv6  and Disab le Zerocon f Networki ng
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  edit ipv6. conf
  12       blocki nfile: 
  13         path : /etc/sys ctl.d/ipv6 .conf
  14         crea te: yes
  15         back up: yes
  16         mark er: "## {m ark} Added  for VA CR ISP"
  17         owne r: root
  18         grou p: root
  19         mode : 0644
  20         cont ent: |
  21           ne t.ipv6.con f.all.disa ble_ipv6 =  1
  22           ne t.ipv6.con f.default. disable_ip v6 = 1
  23           ne t.ipv6.con f.eth0.dis able_ipv6  = 1
  24           #D isable acc epting IPv 6 router a dvertiseme nts
  25           ne t.ipv6.con f.default. accept_ra  = 0
  26           #  Disable Ac cepting IP v6 Redirec ts
  27           ne t.ipv6.con f.default. accept_red irects = 0
  28           #  Disable fo rwarding o f IPv6 sou rce-routed  packets
  29           ne t.ipv6.con f.all.acce pt_source_ route=0
  30           
  31     - name:  edit /etc/ sysconfig/ network
  32       blocki nfile: 
  33         path : /etc/sys config/net work
  34         inse rtafter: ' # Created  by anacond a'
  35         bloc k: |
  36           NE TWORKING_I PV6=no 
  37           IP V6INIT=no
  38           NO ZEROCONF=y es
  39           
  40     
  41