2021-02-05 10:51:39 +01:00
|
|
|
---
|
2023-07-05 15:30:24 +02:00
|
|
|
- name: check if pbs-no-subscription repo keys exists
|
|
|
|
become: true
|
|
|
|
stat:
|
|
|
|
path: "{{ manage_sources_pbs_apt_repo_key_path }}"
|
|
|
|
register: pbs_no_subscription_repo_keys
|
|
|
|
|
|
|
|
- name: add pbs-no-subscription repo keys
|
|
|
|
become: true
|
|
|
|
ansible.builtin.apt_key:
|
|
|
|
url: "{{ manage_sources_pbs_apt_repo_key_url }}"
|
|
|
|
state: present
|
|
|
|
notify: update package lists
|
|
|
|
when: pbs_no_subscription_repo_keys.stat.exists == false
|