From 4ecc215a70a96acad5dc159dfa6ce6e6c3f5635c Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Sun, 10 Apr 2022 18:37:16 +0100 Subject: [PATCH] Fix containerd download in Makefile Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e0e4465..26cf00b 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ hashgen: .PHONY: prepare-test prepare-test: - curl -sLSf https://github.com/containerd/containerd/releases/download/v$(CONTAINERD_VER)/containerd-$(CONTAINERD_VER).linux-amd64.tar.gz > /tmp/containerd.tar.gz && sudo tar -xvf /tmp/containerd.tar.gz -C /usr/local/bin/ --strip-components=1 + curl -sLSf https://github.com/containerd/containerd/releases/download/v$(CONTAINERD_VER)/containerd-$(CONTAINERD_VER)-linux-amd64.tar.gz > /tmp/containerd.tar.gz && sudo tar -xvf /tmp/containerd.tar.gz -C /usr/local/bin/ --strip-components=1 curl -SLfs https://raw.githubusercontent.com/containerd/containerd/v1.6.2/containerd.service | sudo tee /etc/systemd/system/containerd.service sudo systemctl daemon-reload && sudo systemctl start containerd sudo /sbin/sysctl -w net.ipv4.conf.all.forwarding=1