aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-03-04 16:20:22 -0500
committerMicah Anderson <micah@riseup.net>2009-03-04 16:20:22 -0500
commit42d4f33f4163eadec8d1195d943707cfdb867dba (patch)
treed17a3e0599405f60b594a4201b370578ccef61e6 /manifests
parent769bf79dddc4790d8dc67bae7e6ca13e7cc6ee88 (diff)
downloadpuppet-apt-42d4f33f4163eadec8d1195d943707cfdb867dba.tar.gz
puppet-apt-42d4f33f4163eadec8d1195d943707cfdb867dba.tar.bz2
fix recurse parameter for $custom_key_dir to use the proper value
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index b5faef3..6a13de4 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -120,7 +120,7 @@ class apt {
default: {
file { "${apt_base_dir}/keys.d":
source => "$custom_key_dir",
- recurse => yes,
+ recurse => true,
mode => 0755, owner => root, group => root,
}
exec { "for key in `ls ${apt_base_dir/keys.d/` ; do /usr/bin/apt-key add ${apt_base_dir}/$key && apt-get update":