summaryrefslogtreecommitdiff
path: root/manifests/defines
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-03-13 00:24:02 +0000
committermh <mh@immerda.ch>2009-03-13 00:24:02 +0000
commitd098efddffa1385aecac6f730867b350c9a1e540 (patch)
tree767db167028921e16d6ad983b405e0065211d791 /manifests/defines
parentf5ba97a36992098ac8734fe9ed616c9ccf3b1d34 (diff)
avoid recurse as this is what takes memory up
Diffstat (limited to 'manifests/defines')
-rw-r--r--manifests/defines/permissions.pp10
1 files changed, 6 insertions, 4 deletions
diff --git a/manifests/defines/permissions.pp b/manifests/defines/permissions.pp
index a1e8e92..621a74a 100644
--- a/manifests/defines/permissions.pp
+++ b/manifests/defines/permissions.pp
@@ -25,10 +25,12 @@ define apache::file(
$group = 0,
$mode = 0640
) {
-/* file{$name:
- recurse => true,
+ file{$name:
+# as long as there are significant memory problems using
+# recurse we avoid it
+# recurse => true,
backup => false,
- checksum => mtime,
+ checksum => undef,
owner => $owner, group => $group, mode => $mode;
- }*/
+ }
}