From 32adbb8a27c8307684e37582a5271559a44ba646 Mon Sep 17 00:00:00 2001 From: Tom Ford Date: Fri, 20 Mar 2015 14:16:37 +0000 Subject: [PATCH] Update apt key to full 40characters Latest version of puppetlabs/apt module shows warning on every puppet run (Warning: /Apt_key[Add key: 79EA5ED4 from Apt::Source zabbix]: The id should be a full fingerprint (40 characters), see README.) if using a short key so this update includes the full 40 character key. --- manifests/repo.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/repo.pp b/manifests/repo.pp index 8c2ee443f..c7df7d396 100644 --- a/manifests/repo.pp +++ b/manifests/repo.pp @@ -116,7 +116,7 @@ location => 'http://naizvoru.com/raspbian/zabbix', release => $debian, repos => 'main', - key => 'D54A213C80E871A7', + key => 'BC274A7EA7FD5DD267C9A18FD54A213C80E871A7', key_source => 'http://naizvoru.com/raspbian/zabbix/conf/boris@steki.net.gpg.key', include_src => false, } @@ -125,7 +125,7 @@ location => "http://repo.zabbix.com/zabbix/${zabbix_version}/debian/", release => $debian, repos => 'main', - key => '79EA5ED4', + key => 'FBABD5FB20255ECAB22EE194D13D58E479EA5ED4', key_source => 'http://repo.zabbix.com/zabbix-official-repo.key', } } @@ -135,7 +135,7 @@ location => "http://repo.zabbix.com/zabbix/${zabbix_version}/ubuntu/", release => $ubuntu, repos => 'main', - key => '79EA5ED4', + key => 'FBABD5FB20255ECAB22EE194D13D58E479EA5ED4', key_source => 'http://repo.zabbix.com/zabbix-official-repo.key', } } # END 'ubuntu'