Fix Riot depo key
This commit is contained in:
parent
5e738f40a7
commit
aab2daf5b7
1 changed files with 10 additions and 10 deletions
|
@ -9,22 +9,22 @@
|
|||
retries: 3
|
||||
until: apt_result is succeeded
|
||||
|
||||
# Add the key
|
||||
- name: Configure the apt key
|
||||
apt_key:
|
||||
url: https://riot.im/packages/debian/repo-key.asc
|
||||
id: D7B0B66941D01538
|
||||
state: present
|
||||
register: apt_key_result
|
||||
retries: 3
|
||||
until: apt_key_result is succeeded
|
||||
|
||||
# Add the repository into source list
|
||||
- name: Configure riot repository
|
||||
apt_repository:
|
||||
repo: deb https://riot.im/packages/debian/ {{ ansible_distribution_release }} main
|
||||
state: present
|
||||
|
||||
# Add the key
|
||||
- name: Configure the apt key
|
||||
apt_key:
|
||||
url: https://riot.im/packages/debian/repo-key.asc
|
||||
id: E019645248E8F4A1
|
||||
state: present
|
||||
register: apt_key_result
|
||||
retries: 3
|
||||
until: apt_key_result is succeeded
|
||||
|
||||
- name: Install riot-web
|
||||
apt:
|
||||
update_cache: true
|
||||
|
|
Loading…
Reference in a new issue