Initial commit (#285)
parent
0fdede5d7a
commit
771a9eebcf
|
@ -5,12 +5,18 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
|
|
||||||
# Ensures no conflicts from previous test runs
|
# Ensures no conflicts from previous test runs
|
||||||
|
- name: "({{ backend }}) Find old test artifacts"
|
||||||
|
ansible.builtin.find:
|
||||||
|
paths: "{{ remote_tmp_dir }}"
|
||||||
|
patterns:
|
||||||
|
- "regenerate*"
|
||||||
|
register: old_test_artifacts
|
||||||
|
|
||||||
- name: "({{ backend }}) Cleanup Output Directory"
|
- name: "({{ backend }}) Cleanup Output Directory"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ item }}"
|
path: "{{ item.path }}"
|
||||||
state: absent
|
state: absent
|
||||||
with_fileglob:
|
loop: "{{ old_test_artifacts.files }}"
|
||||||
- "{{ remote_tmp_dir }}/regenerate*"
|
|
||||||
|
|
||||||
- name: "({{ backend }}) Regenerate - setup simple keys"
|
- name: "({{ backend }}) Regenerate - setup simple keys"
|
||||||
openssh_keypair:
|
openssh_keypair:
|
||||||
|
|
Loading…
Reference in New Issue