OLD | NEW |
(Empty) | |
| 1 # == Class: adblockplus |
| 2 # |
| 3 # The adblockplus class and the associated adblockplus:: namespace are |
| 4 # used to integrate Puppet modules with each other, in order to assemble |
| 5 # the setups used by the Adblock Plus project. |
| 6 # |
| 7 class adblockplus { |
| 8 |
| 9 # A common location for directories specific to the adblockplus:: setups, |
| 10 # managed via Puppet, but accessible by all users with access to the system |
| 11 @file {'/var/adblockplus': |
| 12 ensure => 'directory', |
| 13 mode => 0755, |
| 14 owner => 'root', |
| 15 } |
| 16 } |
OLD | NEW |