]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/blob - examples/disable_keys.pp
Merge pull request #1081 from johanfleury/fix/remove-apt-prefix-from-facts-variables
[puppet-modules/puppetlabs-apt.git] / examples / disable_keys.pp
1 #Note: This is generally a bad idea. You should not disable verifying repository signatures.
2 apt::conf { 'unauth':
3   priority => 99,
4   content  => 'APT::Get::AllowUnauthenticated 1;',
5 }