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

Side by Side Diff: modules/nginx/manifests/init.pp

Issue 9428006: Disable SSL cache on download servers (Closed)
Patch Set: Created Feb. 20, 2013, 9:49 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « modules/filterserver/manifests/init.pp ('k') | modules/nginx/manifests/params.pp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 class nginx ( 1 class nginx (
2 $worker_processes = $nginx::params::worker_processes, 2 $worker_processes = $nginx::params::worker_processes,
3 $worker_connections = $nginx::params::worker_connections 3 $worker_connections = $nginx::params::worker_connections,
4 $ssl_session_cache = $nginx::params::ssl_session_cache
4 ) inherits nginx::params { 5 ) inherits nginx::params {
5 6
6 package {'nginx': 7 package {'nginx':
7 ensure => present 8 ensure => present
8 } 9 }
9 10
10 File { 11 File {
11 owner => root, 12 owner => root,
12 group => root, 13 group => root,
13 mode => 0644, 14 mode => 0644,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 } 52 }
52 53
53 service {'nginx': 54 service {'nginx':
54 ensure => running, 55 ensure => running,
55 enable => true, 56 enable => true,
56 restart => '/etc/init.d/nginx reload', 57 restart => '/etc/init.d/nginx reload',
57 hasstatus => true, 58 hasstatus => true,
58 require => File['/etc/nginx/nginx.conf'] 59 require => File['/etc/nginx/nginx.conf']
59 } 60 }
60 } 61 }
OLDNEW
« no previous file with comments | « modules/filterserver/manifests/init.pp ('k') | modules/nginx/manifests/params.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld