mirror of https://github.com/ceph/ceph-ansible.git
common: use gnupg instead of gpg
gpg package isn't available for all Debian/Ubuntu distribution but
gnupg is.
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit 622d9feae9
)
pull/4021/head
parent
5982e17315
commit
1fd81e8d42
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
- name: install dependencies for apt modules
|
||||
package:
|
||||
name: ['apt-transport-https', 'ca-certificates', 'gpg', 'software-properties-common']
|
||||
name: ['apt-transport-https', 'ca-certificates', 'gnupg', 'software-properties-common']
|
||||
update_cache: yes
|
||||
register: result
|
||||
until: result is succeeded
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
- name: allow apt to use a repository over https (debian)
|
||||
package:
|
||||
name: ['apt-transport-https', 'ca-certificates', 'gpg', 'software-properties-common']
|
||||
name: ['apt-transport-https', 'ca-certificates', 'gnupg', 'software-properties-common']
|
||||
update_cache: yes
|
||||
register: result
|
||||
until: result is succeeded
|
||||
|
|
Loading…
Reference in New Issue