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

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

Issue 29366977: Issue 1503 - Remove hard-coded $MAILTO variable from stats cron environment (Closed)
Patch Set: Created Dec. 7, 2016, 7:58 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/statsmaster/manifests/downloads.pp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 class statsmaster( 1 class statsmaster(
2 $domain, 2 $domain,
3 $certificate, 3 $certificate,
4 $private_key, 4 $private_key,
5 $is_default=false 5 $is_default=false
6 ) { 6 ) {
7 7
8 include statsmaster::downloads, statsmaster::awstats 8 include statsmaster::downloads, statsmaster::awstats
9 9
10 user {'stats': 10 user {'stats':
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 file {'/opt/cron_geoipdb_update.sh': 60 file {'/opt/cron_geoipdb_update.sh':
61 ensure => absent, 61 ensure => absent,
62 } 62 }
63 63
64 cron {'geoipdb_update': 64 cron {'geoipdb_update':
65 ensure => 'absent', 65 ensure => 'absent',
66 } 66 }
67 67
68 class {'geoip': 68 class {'geoip':
69 cron => { 69 cron => {
70 'environment' => ['MAILTO=admins@adblockplus.org,root'],
71 'hour' => 3, 70 'hour' => 3,
72 'minute' => 15, 71 'minute' => 15,
73 'monthday' => 3, 72 'monthday' => 3,
74 }, 73 },
75 script => '/opt/cron_geoipdb_update.py', 74 script => '/opt/cron_geoipdb_update.py',
76 } 75 }
77 } 76 }
OLDNEW
« no previous file with comments | « modules/statsmaster/manifests/downloads.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld