From 5f84739dea49e04d5c0957c1c023991e20a80668 Mon Sep 17 00:00:00 2001 From: Jiri Mencak Date: Thu, 21 Nov 2024 22:04:27 +0100 Subject: [PATCH] Fix upstream and OKD builds (#1222) 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. Co-authored-by: Jiri Mencak --- 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