35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
- name: Create Temp SSH key
|
|
command: ssh-keygen -t {{ zuul_ssh_key_algorithm }} -N '' -C 'zuul-build-sshkey' -f {{ zuul_temp_ssh_key }} -b {{ zuul_ssh_key_size }}
|
|
delegate_to: localhost
|
|
run_once: true
|
|
|
|
- name: Remote setup ssh keys (linux)
|
|
include_tasks: remote-linux.yaml
|
|
when: ansible_os_family != "Windows"
|
|
|
|
- name: Remote setup ssh keys (windows)
|
|
include_tasks: remote-windows.yaml
|
|
when: ansible_os_family == "Windows"
|
|
|
|
- name: Remove zuul master ssh key
|
|
import_role:
|
|
name: remove-zuul-sshkey
|
|
|
|
- name: Add back temp key
|
|
command: ssh-add {{ zuul_temp_ssh_key }}
|
|
delegate_to: localhost
|
|
run_once: true
|
|
|
|
- name: Verify we can still SSH to all nodes
|
|
ping:
|
|
when: ansible_os_family != "Windows"
|
|
|
|
- name: Verify we can still SSH to all nodes (windows)
|
|
command: ssh -o BatchMode=yes -o ConnectTimeout=10 {{ ansible_user }}@{{ ansible_host }} echo success
|
|
delegate_to: localhost
|
|
when:
|
|
- ansible_os_family == "Windows"
|
|
# Only run if we successfully configured the host. If not the host doesn't support
|
|
# ssh and the check shall not break them.
|
|
- windows_remote_ssh is succeeded
|