module-puppetlabs-apt/examples/disable_keys.pp

6 lines
185 B
ObjectPascal
Raw Normal View History

2015-03-25 22:22:52 +01:00
#Note: This is generally a bad idea. You should not disable verifying repository signatures.
2015-03-25 20:16:04 +01:00
apt::conf { 'unauth':
priority => 99,
content => 'APT::Get::AllowUnauthenticated 1;'
}