2021-04-28 16:41:14 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure import of binary key downloaded using URLs works
|
2021-04-30 16:44:50 +02:00
|
|
|
apt_key:
|
|
|
|
url: https://ansible-ci-files.s3.us-east-1.amazonaws.com/test/integration/targets/apt_key/apt-key-example-binary.gpg
|
2021-04-28 16:41:14 +02:00
|
|
|
register: apt_key_binary_test
|
|
|
|
|
|
|
|
- name: Validate the results
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- 'apt_key_binary_test.changed is defined'
|
|
|
|
- 'apt_key_binary_test.changed'
|