From: Morgan Haskel Date: Wed, 25 Mar 2015 19:16:04 +0000 (-0400) Subject: Example for disabling keys X-Git-Tag: 2.0.0~9^2~2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1b4d8ba991c2072ec0e3347e48f1aca148970929;p=puppet-modules%2Fpuppetlabs-apt.git Example for disabling keys --- diff --git a/examples/disable_keys.pp b/examples/disable_keys.pp new file mode 100644 index 0000000..ad61df0 --- /dev/null +++ b/examples/disable_keys.pp @@ -0,0 +1,5 @@ +#Note: This is generally a bad idea. You should not disable keys. +apt::conf { 'unauth': + priority => 99, + content => 'APT::Get::AllowUnauthenticated 1;' +}