From: Micah Anderson Date: Mon, 29 Sep 2008 16:54:13 +0000 (-0400) Subject: need to set a null case for the $custom_key_dir variable so that it will fire properl... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ee506f7586ee983287f95109c14e73447457283e;p=puppet-apt.git need to set a null case for the $custom_key_dir variable so that it will fire properly when not set --- diff --git a/manifests/init.pp b/manifests/init.pp index e7eddbc..3128a92 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -117,6 +117,9 @@ class apt { } case $custom_key_dir { + '': { + exec { "/bin/true # no_custom_keydir": } + } default: { file { "${apt_base_dir}/keys.d": source => "$custom_key_dir",