cfffd4431b
Change-Id: I7ac8d2335518c06808461f2fb30ea896709f09ed
11 lines
332 B
YAML
11 lines
332 B
YAML
- name: Check to see if ssh key was already created for this build
|
|
stat:
|
|
path: "{{ zuul_temp_ssh_key }}"
|
|
register: zuul_temp_ssh_key_stat
|
|
delegate_to: localhost
|
|
failed_when: false
|
|
|
|
- name: Create a new key in workspace based on build UUID
|
|
include: create-key-and-replace.yaml
|
|
when: zuul_temp_ssh_key_stat is defined
|