OLD | NEW |
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 22 matching lines...) Expand all Loading... |
33 {host => 'server_22.adblockplus.org', ip => '10.8.0.117'}, | 33 {host => 'server_22.adblockplus.org', ip => '10.8.0.117'}, |
34 {host => 'notification1.adblockplus.org', ip => '10.8.0.118'}, | 34 {host => 'notification1.adblockplus.org', ip => '10.8.0.118'}, |
35 {host => 'notification2.adblockplus.org', ip => '10.8.0.119'}, | 35 {host => 'notification2.adblockplus.org', ip => '10.8.0.119'}, |
36 {host => 'filter1.adblockplus.org', ip => '10.8.0.120'}, | 36 {host => 'filter1.adblockplus.org', ip => '10.8.0.120'}, |
37 {host => 'filter2.adblockplus.org', ip => '10.8.0.121'}, | 37 {host => 'filter2.adblockplus.org', ip => '10.8.0.121'}, |
38 {host => 'filter3.adblockplus.org', ip => '10.8.0.122'}, | 38 {host => 'filter3.adblockplus.org', ip => '10.8.0.122'}, |
39 {host => 'filter4.adblockplus.org', ip => '10.8.0.123'}, | 39 {host => 'filter4.adblockplus.org', ip => '10.8.0.123'}, |
40 {host => 'filter5.adblockplus.org', ip => '10.8.0.124'}, | 40 {host => 'filter5.adblockplus.org', ip => '10.8.0.124'}, |
41 {host => 'filter6.adblockplus.org', ip => '10.8.0.125'}, | 41 {host => 'filter6.adblockplus.org', ip => '10.8.0.125'}, |
42 {host => 'download1.adblockplus.org', ip => '10.8.0.126'}, | 42 {host => 'download1.adblockplus.org', ip => '10.8.0.126'}, |
| 43 {host => 'filtermaster1.adblockplus.org', ip => '10.8.0.127'}, |
43 ] | 44 ] |
44 | 45 |
45 hostentry { $hosts: } | 46 hostentry { $hosts: } |
46 } | 47 } |
OLD | NEW |