| OLD | NEW |
| 1 # == Class: adblockplus::legacy | 1 # == Class: adblockplus::legacy |
| 2 # | 2 # |
| 3 # A container for migrating obsolete global resources, included with the | 3 # A container for migrating obsolete global resources, included with the |
| 4 # adblockplus class. See http://hub.eyeo.com/issues/1541 for more information. | 4 # adblockplus class. See http://hub.eyeo.com/issues/1541 for more information. |
| 5 # | 5 # |
| 6 class adblockplus::legacy { | 6 class adblockplus::legacy { |
| 7 |
| 8 # Formerly included with class statsclient |
| 9 user {'stats': |
| 10 ensure => 'absent', |
| 11 } |
| 12 |
| 13 # User resources cannot remove the associated $HOME directory |
| 14 file {'/home/stats': |
| 15 ensure => 'absent', |
| 16 force => true, |
| 17 recurse => true, |
| 18 } |
| 7 } | 19 } |
| OLD | NEW |