From 9d3e83908247bbe07223453afb20013280a14b5e Mon Sep 17 00:00:00 2001 From: friedrich goerz Date: Mon, 13 Dec 2021 13:30:41 +0100 Subject: [PATCH] DEV-280: BUGFIXED wait_for task to to fix broken smardigo-step 'create-server' --- roles/hcloud/tasks/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/hcloud/tasks/main.yml b/roles/hcloud/tasks/main.yml index 61a6eaa..7cf0be8 100644 --- a/roles/hcloud/tasks/main.yml +++ b/roles/hcloud/tasks/main.yml @@ -93,8 +93,9 @@ - name: "Wait for {{ inventory_hostname }}" delegate_to: localhost wait_for: - timeout: 120 + timeout: 30 port: 22 host: '{{ stage_server_ip }}' - delay: 10 search_regex: OpenSSH + retries: 20 + delay: 10