From: Larry Smith Jr Date: Wed, 19 Dec 2018 17:06:47 +0000 (-0500) Subject: Fixing missing gpg command for Debian/Ubuntu X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=32a787f28b5898336ec785f11c434f088728187a;p=github%2Ffretlink%2Fansible-rabbitmq.git Fixing missing gpg command for Debian/Ubuntu --- diff --git a/tasks/debian.yml b/tasks/debian.yml index 317932e..0a6572e 100644 --- a/tasks/debian.yml +++ b/tasks/debian.yml @@ -1,4 +1,12 @@ --- +- name: debian | Adding Pre-Reqs + apt: + name: ['gnupg2'] + state: present + become: true + register: result + until: result is successful + - name: debian | adding RabbitMQ public GPG key to the apt repo apt_key: url: "{{ rabbitmq_debian_repo_key }}"