273. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/18/2019 5:55:27 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.

273.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_TASCore v2.0_Build_10.zip\MCCF_EDI_TAS_DevOps\mccf_devops\roles\mccfrolenginx\tasks manage-nginx.yml Wed Apr 3 02:27:30 2019 UTC
2 MCCF_EDI_TAS_TASCore v2.0_Build_10.zip\MCCF_EDI_TAS_DevOps\mccf_devops\roles\mccfrolenginx\tasks manage-nginx.yml Mon Apr 15 17:44:21 2019 UTC

273.2 Comparison summary

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

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

273.4 Active regular expressions

No regular expressions were active.

273.5 Comparison detail

  1   ---
  2   # tasks fi le for ngi nx
  3   - name: ma nage-nginx .yml
  4     hosts: D NS.URL
  5     become:  yes
  6     tasks:
  7  
  8     - name:  manage-ngi nx.yml | s tatus Ngin x
  9       shell:  systemctl  status rh -nginx114- nginx
  10       regist er: ngxsta t
  11       tags:
  12         - st at-ngx
  13     
  14     - name:  manage-ngi nx.yml | O utput Ngin x Status
  15       debug:
  16         msg:  "{{ ngxst at.stdout  }}"
  17       tags:
  18         - st at-ngx
  19     
  20     - name:  manage-ngi nx.yml | s tatus HTTP D
  21       shell:  systemctl  status ht tpd
  22       regist er: httpds tat
  23       tags:
  24         - st at-httpd
  25     
  26     - name:  manage-ngi nx.yml | O utput http d Status
  27       debug:
  28         var:  "{{ httpd stat.stdou t }}"
  29       tags:
  30         - st at-httpd
  31     
  32     - name:  manage-ngi nx.yml | s top Nginx
  33       system d:
  34         name : rh-nginx 114-nginx
  35         stat e: stopped
  36         daem on_reload:  yes
  37       tags:
  38         - st op-ngx
  39     
  40     - name:  manage-ngi nx.yml | s top Apache  HTTPD
  41       system d:
  42         name : httpd
  43         stat e: stopped
  44         daem on_reload:  yes
  45       tags:
  46         - st op-httpd
  47     
  48     - name:  manage-ngi nx.yml | s tart Nginx
  49       system d:
  50         name : rh-nginx 114-nginx
  51         stat e: started
  52         daem on_reload:  yes
  53       tags:
  54         - st art-ngx
  55     
  56     - name:  manage-ngi nx.yml | s tart HTTPD
  57       system d:
  58         name : httpd
  59         stat e: started
  60         daem on_reload:  yes
  61       tags:
  62         - st art-httpd