Skip to content

Commit

Permalink
Allow turning off GPG keys for Yum repos
Browse files Browse the repository at this point in the history
  • Loading branch information
tanadeau authored Jul 17, 2019
1 parent 1b39e9b commit 7071d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/install-RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
description: Erlang
baseurl: '{{ erlang_yum_baseurl }}'
gpgcheck: '{{ erlang_yum_gpgcheck }}'
gpgkey: '{{ erlang_yum_repo_gpgkey }}'
repo_gpgcheck: '{{ erlang_yum_repo_gpgcheck }}'
gpgkey: '{{ erlang_yum_repo_gpgkey | default(omit, true) }}'
- name: Configure RabbitMQ Yum repo
yum_repository:
name: rabbitmq
description: RabbitMQ
baseurl: '{{ rabbitmq_yum_baseurl }}'
gpgcheck: '{{ rabbitmq_yum_gpgcheck }}'
repo_gpgcheck: '{{ rabbitmq_yum_repo_gpgcheck }}'
gpgkey: '{{ rabbitmq_yum_repo_gpgcheck }}'
gpgkey: '{{ rabbitmq_yum_repo_gpgkey | default(omit, true) }}'
- name: Install RabbitMQ
package:
name: rabbitmq-server-{{ rabbitmq_version }}
Expand Down

0 comments on commit 7071d04

Please sign in to comment.