12 lines
380 B
YAML
12 lines
380 B
YAML
---
|
|
|
|
- name: Ensure import of binary key downloaded using URLs works
|
|
apt_key:
|
|
url: https://ansible-ci-files.s3.us-east-1.amazonaws.com/test/integration/targets/apt_key/apt-key-example-binary.gpg
|
|
register: apt_key_binary_test
|
|
|
|
- name: Validate the results
|
|
assert:
|
|
that:
|
|
- 'apt_key_binary_test.changed is defined'
|
|
- 'apt_key_binary_test.changed'
|