2f8dbf673e
* Add explicit apt tests for fnmatch and update_cache * Add explicit apt_key tests for fetching key directly from url * ci_complete ci_coverage * Remove repo only by repo * ci_complete ci_coverage * Add apt cache update after apt_repository to show that the cache doesn't update * ci_complete ci_coverage * Add systemd tests for enabling and disabling a service * ci_complete ci_coverage * Remove incidental_zabbix_host * ci_complete ci_coverage
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
- name: Get Fedora GPG Key
|
|
get_url:
|
|
url: https://getfedora.org/static/fedora.gpg
|
|
dest: /tmp/fedora.gpg
|
|
|
|
- name: Run apt_key with both file and keyserver
|
|
apt_key:
|
|
file: /tmp/fedora.gpg
|
|
keyserver: keys.gnupg.net
|
|
id: 97A1AE57C3A2372CCA3A4ABA6C13026D12C944D0
|
|
register: both_file_keyserver
|
|
ignore_errors: true
|
|
|
|
- name: Run apt_key with file only
|
|
apt_key:
|
|
file: /tmp/fedora.gpg
|
|
register: only_file
|
|
|
|
- name: Run apt_key with keyserver only
|
|
apt_key:
|
|
keyserver: keys.gnupg.net
|
|
id: 97A1AE57C3A2372CCA3A4ABA6C13026D12C944D0
|
|
register: only_keyserver
|
|
|
|
- name: validate results
|
|
assert:
|
|
that:
|
|
- 'both_file_keyserver is failed'
|
|
- 'only_file.changed'
|
|
- 'not only_keyserver.changed'
|
|
|
|
- name: remove fedora.gpg
|
|
apt_key:
|
|
id: 97A1AE57C3A2372CCA3A4ABA6C13026D12C944D0
|
|
state: absent
|
|
register: remove_fedora
|
|
|
|
- name: add key from url
|
|
apt_key:
|
|
url: https://getfedora.org/static/fedora.gpg
|
|
register: apt_key_url
|
|
|
|
- name: verify key from url
|
|
assert:
|
|
that:
|
|
- remove_fedora is changed
|
|
- apt_key_url is changed
|