From accb55b08e9375e691daafadaa0bd266422233a5 Mon Sep 17 00:00:00 2001 From: Jiri Mencak Date: Wed, 20 Nov 2024 19:29:51 +0100 Subject: [PATCH] Fix upstream and OKD builds PR #1099 broke upstream and OKD builds as it added a dependency on rsync. quay.io/centos/centos:stream9 image does not ship rsync by default. Once we can use the new golang's recursive copy (CopyFS) functionality in go 1.23 (https://github.com/golang/go/issues/62484), use it and remove the dependency on rsync. --- hack/dockerfile_install_support.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/dockerfile_install_support.sh b/hack/dockerfile_install_support.sh index 27c398c4f..ae9bb21a8 100644 --- a/hack/dockerfile_install_support.sh +++ b/hack/dockerfile_install_support.sh @@ -3,7 +3,7 @@ set -euo pipefail set -o xtrace -INSTALL_PKGS="nmap-ncat procps-ng pciutils" +INSTALL_PKGS="nmap-ncat procps-ng pciutils rsync" # TuneD pre-installation steps cp -r /root/assets/bin/* /usr/local/bin