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

Delta Between Two Patch Sets: manifests/vagrant.pp

Issue 5143068516810752: Added new stats server and user counter page (Closed)
Left Patch Set: Created Dec. 20, 2013, 11:05 a.m.
Right Patch Set: Centralized stats processing Created Dec. 20, 2013, 3:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 define hostentry ( 1 define hostentry (
2 $host = $title['host'], 2 $host = $title['host'],
3 $ip = $title['ip'] 3 $ip = $title['ip']
4 ) { 4 ) {
5 host {$host: 5 host {$host:
6 ensure => present, 6 ensure => present,
7 ip => $ip, 7 ip => $ip,
8 name => $host 8 name => $host
9 } 9 }
10 } 10 }
(...skipping 11 matching lines...) Expand all
22 {host => 'stats.adblockplus.org', ip => '10.8.0.117'}, 22 {host => 'stats.adblockplus.org', ip => '10.8.0.117'},
23 {host => 'server_4.adblockplus.org', ip => '10.8.0.99'}, 23 {host => 'server_4.adblockplus.org', ip => '10.8.0.99'},
24 {host => 'server_5.adblockplus.org', ip => '10.8.0.100'}, 24 {host => 'server_5.adblockplus.org', ip => '10.8.0.100'},
25 {host => 'server_6.adblockplus.org', ip => '10.8.0.101'}, 25 {host => 'server_6.adblockplus.org', ip => '10.8.0.101'},
26 {host => 'server_7.adblockplus.org', ip => '10.8.0.102'}, 26 {host => 'server_7.adblockplus.org', ip => '10.8.0.102'},
27 {host => 'server_10.adblockplus.org', ip => '10.8.0.105'}, 27 {host => 'server_10.adblockplus.org', ip => '10.8.0.105'},
28 {host => 'server_11.adblockplus.org', ip => '10.8.0.106'}, 28 {host => 'server_11.adblockplus.org', ip => '10.8.0.106'},
29 {host => 'server_12.adblockplus.org', ip => '10.8.0.107'}, 29 {host => 'server_12.adblockplus.org', ip => '10.8.0.107'},
30 {host => 'server_15.adblockplus.org', ip => '10.8.0.110'}, 30 {host => 'server_15.adblockplus.org', ip => '10.8.0.110'},
31 {host => 'server_19.adblockplus.org', ip => '10.8.0.114'}, 31 {host => 'server_19.adblockplus.org', ip => '10.8.0.114'},
32 {host => 'server_22.adblockplus.org', ip => '10.8.0.117'},
33 {host => 'notification1.adblockplus.org', ip => '10.8.0.118'}, 32 {host => 'notification1.adblockplus.org', ip => '10.8.0.118'},
34 {host => 'notification2.adblockplus.org', ip => '10.8.0.119'}, 33 {host => 'notification2.adblockplus.org', ip => '10.8.0.119'},
35 {host => 'filter1.adblockplus.org', ip => '10.8.0.120'}, 34 {host => 'filter1.adblockplus.org', ip => '10.8.0.120'},
36 {host => 'filter2.adblockplus.org', ip => '10.8.0.121'}, 35 {host => 'filter2.adblockplus.org', ip => '10.8.0.121'},
37 {host => 'filter3.adblockplus.org', ip => '10.8.0.122'}, 36 {host => 'filter3.adblockplus.org', ip => '10.8.0.122'},
38 {host => 'filter4.adblockplus.org', ip => '10.8.0.123'}, 37 {host => 'filter4.adblockplus.org', ip => '10.8.0.123'},
39 {host => 'filter5.adblockplus.org', ip => '10.8.0.124'}, 38 {host => 'filter5.adblockplus.org', ip => '10.8.0.124'},
40 {host => 'filter6.adblockplus.org', ip => '10.8.0.125'}, 39 {host => 'filter6.adblockplus.org', ip => '10.8.0.125'},
41 {host => 'download1.adblockplus.org', ip => '10.8.0.126'}, 40 {host => 'download1.adblockplus.org', ip => '10.8.0.126'},
42 {host => 'filtermaster1.adblockplus.org', ip => '10.8.0.127'}, 41 {host => 'filtermaster1.adblockplus.org', ip => '10.8.0.127'},
43 {host => 'update1.adblockplus.org', ip => '10.8.0.128'}, 42 {host => 'update1.adblockplus.org', ip => '10.8.0.128'},
44 {host => 'web1.adblockplus.org', ip => '10.8.0.129'}, 43 {host => 'web1.adblockplus.org', ip => '10.8.0.129'},
45 {host => 'stats1.adblockplus.org', ip => '10.8.0.130'}, 44 {host => 'stats1.adblockplus.org', ip => '10.8.0.130'},
46 ] 45 ]
47 46
48 hostentry { $hosts: } 47 hostentry { $hosts: }
49 } 48 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld