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

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

Issue 29527816: #2762 - Fix provisioning of geoip to filter servers (Closed)
Patch Set: For comment 5 Created Aug. 30, 2017, 3:20 p.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/adblockplus/manifests/legacy/filterserver.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 filterserver($is_default = false) { 1 class filterserver($is_default = false) {
2 2
3 include adblockplus::web 3 include adblockplus::web
4 include nginx 4 include nginx
5 include geoip
5 6
6 user {'subscriptionstat': 7 user {'subscriptionstat':
7 ensure => absent, 8 ensure => absent,
8 } 9 }
9 10
10 user {'rsync': 11 user {'rsync':
11 ensure => present, 12 ensure => present,
12 comment => 'Filter list mirror user', 13 comment => 'Filter list mirror user',
13 home => '/home/rsync', 14 home => '/home/rsync',
14 managehome => true 15 managehome => true
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 File['/home/rsync/.ssh/id_rsa'], 91 File['/home/rsync/.ssh/id_rsa'],
91 User['rsync'] 92 User['rsync']
92 ], 93 ],
93 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas ter.adblockplus.org:. /var/www/easylist/', 94 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas ter.adblockplus.org:. /var/www/easylist/',
94 environment => hiera('cron::environment', []), 95 environment => hiera('cron::environment', []),
95 user => rsync, 96 user => rsync,
96 hour => '*', 97 hour => '*',
97 minute => '2-52/10' 98 minute => '2-52/10'
98 } 99 }
99 } 100 }
OLDNEW
« no previous file with comments | « modules/adblockplus/manifests/legacy/filterserver.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld