Skip to content

Commit 5f84739

Browse files
authored
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 (golang/go#62484), use it and remove the dependency on rsync. Co-authored-by: Jiri Mencak <jmencak@users.noreply.github.com>
1 parent be3fc39 commit 5f84739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/dockerfile_install_support.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44
set -o xtrace
55

6-
INSTALL_PKGS="nmap-ncat procps-ng pciutils"
6+
INSTALL_PKGS="nmap-ncat procps-ng pciutils rsync"
77

88
# TuneD pre-installation steps
99
cp -r /root/assets/bin/* /usr/local/bin

0 commit comments

Comments
 (0)