Skip to content

Commit

Permalink
Install dirmngr on Debian 9+
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Apr 19, 2018
1 parent 0c71473 commit cd6f789
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tasks/repository.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# tasks file for percona-client
---
- name: repository | install | dependencies
apt:
name: "{{ item }}"
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
with_items:
- dirmngr
when: ansible_distribution == 'Debian' and ansible_distribution_version | version_compare('9.0', '>=')
tags:
- percona-client-repository-install
- percona-client-repository-install-dependencies

- name: repository | add public key
apt_key:
id: 9334A25F8507EFA5
Expand Down

0 comments on commit cd6f789

Please sign in to comment.