From 35b8b2b269c9ca8a9ed44de645c0c869d0a3eca6 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 28 Apr 2016 07:37:22 -0400 Subject: [PATCH] Add Debian Jessie GPG Key Regardless of the machine, since we are usually building on Trusty, this will allow that type of server to build and avoid the "Release signed by unknown key" issue. Signed-off-by: Alfredo Deza --- ansible/slave.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/slave.yml b/ansible/slave.yml index 8633a39f..6fc1113e 100644 --- a/ansible/slave.yml +++ b/ansible/slave.yml @@ -104,6 +104,11 @@ - libffi-dev when: ansible_pkg_mgr == "apt" + - name: Add the Debian Jessie Key + sudo: yes + when: ansible_pkg_mgr == "apt" + apt_key: id=518E17E1 url=https://ftp-master.debian.org/keys/archive-key-8.0.asc keyring=/etc/apt/trusted.gpg.d/jessie.gpg state=present + - name: correct java version selected alternatives: name=java path=/usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java when: -- 2.39.5