Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/discourse_docker/manifests/init.pp

Issue 29370691: Issue 4234 - New discourse module based on docker (Closed)
Left Patch Set: whitespace and comments Created Jan. 6, 2017, 3:32 p.m.
Right Patch Set: add empty line at eof Created Jan. 6, 2017, 3:40 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/discourse_docker/files/site.conf ('k') | modules/discourse_docker/templates/app.yml.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # == Class: discourse_docker 1 # == Class: discourse_docker
2 # 2 #
3 # Depends on module docker (for now) 3 # Depends on module docker (for now)
4 # 4 #
5 # == Parameters: 5 # == Parameters:
6 6
7 # [*domain*] 7 # [*domain*]
8 # Set the domain (hostname) for the site. This will be used in both nginx and d iscourse settings. 8 # Set the domain (hostname) for the site. This will be used in both nginx and d iscourse settings.
9 # 9 #
10 # [*certificate*] 10 # [*certificate*]
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 require => Exec['rebuild'], 106 require => Exec['rebuild'],
107 } 107 }
108 108
109 nginx::hostconfig {$domain: 109 nginx::hostconfig {$domain:
110 source => "puppet:///modules/discourse_docker/site.conf", 110 source => "puppet:///modules/discourse_docker/site.conf",
111 certificate => $certificate, 111 certificate => $certificate,
112 private_key => $private_key, 112 private_key => $private_key,
113 is_default => $is_default, 113 is_default => $is_default,
114 log => "access_log_intraforum" 114 log => "access_log_intraforum"
115 } 115 }
116 } 116 }
f.lopez 2017/01/06 15:37:31 are we missing a new line here?
f.nicolaisen 2017/01/06 15:41:06 Acknowledged.
117
LEFTRIGHT

Powered by Google App Engine
This is Rietveld