mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
508 B
YAML
20 lines
508 B
YAML
8 years ago
|
- name: run first docs example
|
||
|
apt_key:
|
||
|
keyserver: keyserver.ubuntu.com
|
||
|
id: 36A1D7869245C8950F966E92D8576A8BA88D21E9
|
||
|
register: apt_key_test0
|
||
|
- debug: var=apt_key_test0
|
||
|
|
||
|
- name: re-run first docs example
|
||
|
apt_key:
|
||
|
keyserver: keyserver.ubuntu.com
|
||
|
id: 36A1D7869245C8950F966E92D8576A8BA88D21E9
|
||
|
register: apt_key_test1
|
||
|
|
||
|
- name: validate results
|
||
|
assert:
|
||
|
that:
|
||
|
- 'apt_key_test0.changed is defined'
|
||
|
- 'apt_key_test0.changed'
|
||
|
- 'not apt_key_test1.changed'
|