Index: modules/adblockplus/manifests/init.pp |
diff --git a/modules/adblockplus/manifests/init.pp b/modules/adblockplus/manifests/init.pp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..08254ef9cbd8e5fc93ee827e07e2bc30808c7835 |
--- /dev/null |
+++ b/modules/adblockplus/manifests/init.pp |
@@ -0,0 +1,16 @@ |
+# == Class: adblockplus |
+# |
+# The adblockplus class and the associated adblockplus:: namespace are |
+# used to integrate Puppet modules with each other, in order to assemble |
+# the setups used by the Adblock Plus project. |
+# |
+class adblockplus { |
+ |
+ # A common location for directories specific to the adblockplus:: setups, |
+ # managed via Puppet, but accessible by all users with access to the system |
+ @file {'/var/adblockplus': |
+ ensure => 'directory', |
+ mode => 0755, |
+ owner => 'root', |
+ } |
+} |