From feb169a5052f8b76728d42626cb2ade879543860 Mon Sep 17 00:00:00 2001 From: Kimmo Lehto Date: Tue, 10 Aug 2021 14:21:03 +0300 Subject: [PATCH] Flip windows curl check logic (#185) --- config/cluster/host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cluster/host.go b/config/cluster/host.go index 53f6522e..94b5faa0 100644 --- a/config/cluster/host.go +++ b/config/cluster/host.go @@ -372,7 +372,7 @@ func (h *Host) WaitK0sServiceRunning() error { func (h *Host) NeedCurl() bool { // Windows does not need any packages for web requests if h.Configurer.Kind() == "windows" { - return true + return false } // Controllers always need curl