Example for disabling keys

This commit is contained in:
Morgan Haskel 2015-03-25 15:16:04 -04:00
parent 895ecb5737
commit 1b4d8ba991

5
examples/disable_keys.pp Normal file
View file

@ -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;'
}