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

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

Issue 5143068516810752: Added new stats server and user counter page (Closed)
Patch Set: Created Dec. 20, 2013, 11:05 a.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
« no previous file with comments | « modules/statsmaster/files/usercounts.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/statsmaster/manifests/init.pp
===================================================================
--- a/modules/statsmaster/manifests/init.pp
+++ b/modules/statsmaster/manifests/init.pp
@@ -56,16 +56,23 @@ class statsmaster {
}
file {'/var/www/statsdata':
ensure => directory,
mode => 0755,
owner => stats,
}
+ file {'/var/www/statsdata/usercounts.html':
+ ensure => file,
+ mode => 0444,
+ source => 'puppet:///modules/statsmaster/usercounts.html',
+ owner => stats,
+ }
+
file {'/var/www/htpasswd':
ensure => file,
mode => 0444,
source => 'puppet:///modules/private/stats-htpasswd',
}
file {'/etc/nginx/sites-available/adblockplus.org_sslcert.key':
ensure => file,
« no previous file with comments | « modules/statsmaster/files/usercounts.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld