mirror of https://github.com/ceph/ceph-ansible.git
Ansible tests are not filters
The use of "| success" and "| changed" are not valid syntax for modern
ansible releases.
Signed-off-by: Jonathan Rosser <jonathan.rosser@rd.bbc.co.uk>
(cherry picked from commit 42884e8175
)
pull/5469/head
parent
77002c12c8
commit
28ee26ae58
|
@ -20,8 +20,8 @@
|
|||
register: update_ganesha_apt_cache
|
||||
retries: 5
|
||||
delay: 2
|
||||
until: update_ganesha_apt_cache | success
|
||||
when: add_ganesha_apt_repo | changed
|
||||
until: update_ganesha_apt_cache is success
|
||||
when: add_ganesha_apt_repo is changed
|
||||
|
||||
- name: debian based systems - dev repos specific tasks
|
||||
when:
|
||||
|
|
Loading…
Reference in New Issue