You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
312 B
10 lines
312 B
- name: send unlock command
|
|
raw: "printf '{{ autoinstall_disk_encryption_secret }}' | cryptroot-unlock"
|
|
- name: wait for boot
|
|
wait_for:
|
|
delay: 5
|
|
port: '{{ ansible_ssh_port|default(22) }}'
|
|
host: '{{ ansible_ssh_host }}'
|
|
search_regex: OpenSSH|dropbear
|
|
timeout: 300
|
|
delegate_to: localhost
|
|
|