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

Unified Diff: modules/notificationserver/manifests/init.pp

Issue 11468051: Update stats processing (Closed)
Patch Set: Created Aug. 23, 2013, 1:58 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: modules/notificationserver/manifests/init.pp
===================================================================
--- a/modules/notificationserver/manifests/init.pp
+++ b/modules/notificationserver/manifests/init.pp
@@ -1,17 +1,18 @@
class notificationserver {
class {'nginx':
worker_processes => 2,
worker_connections => 4000,
ssl_session_cache => off,
}
- class {'sitescripts':
- sitescriptsini_source => 'puppet:///modules/notificationserver/sitescripts.ini'
+ class {'statsclient':
+ log_path => '/var/log/nginx/access_log_notification.1.gz',
+ custom_sitescriptsini_source => 'puppet:///modules/notificationserver/sitescripts.ini'
}
file {'/var/www':
ensure => directory,
owner => nginx,
mode => 0755,
require => Package['nginx']
}

Powered by Google App Engine
This is Rietveld