]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
need to set a null case for the $custom_key_dir variable so that it will fire properl...
authorMicah Anderson <micah@riseup.net>
Mon, 29 Sep 2008 16:54:13 +0000 (12:54 -0400)
committerMicah Anderson <micah@riseup.net>
Mon, 29 Sep 2008 16:54:13 +0000 (12:54 -0400)
manifests/init.pp

index e7eddbc4a62d67484523b4751fc6082e8e75f339..3128a924b3cc596ee3f44c2622c7d1811fa5d0ad 100644 (file)
@@ -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",