| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| (no file at all) | |
| 1 # == Class: adblockplus::legacy::filterserver | |
| 2 # | |
| 3 # A class for maintaining legacy filter servers. | |
| 4 # | |
| 5 # See http://hub.eyeo.com/issues/2762 for more information. | |
| 6 # | |
| 7 class adblockplus::legacy::filterserver { | |
| 8 | |
| 9 # Remove any manually installed geoip-database-contrib | |
| 10 package{'geoip-database-contrib': | |
| 11 ensure => 'purged', | |
| 12 require => Cron['geoip'], | |
|
mathias
2017/08/14 08:04:33
Why should ensuring absence require anything?
| |
| 13 } | |
| 14 } | |
| 15 | |
| LEFT | RIGHT |