From 01b517ad6909a4d98e298721c8cae25622300625 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 19 May 2023 17:22:28 -0700 Subject: [PATCH] scripts/build_utils.sh: limit .gz files copied to chacra Don't copy *every* .gz file from the release tree (which includes the source tree); just ceph*.gz Fixes: https://tracker.ceph.com/issues/61306 Signed-off-by: Dan Mick --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 82d35c3a..3d92a13b 100755 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -966,7 +966,7 @@ build_debs() { if [ "$THROWAWAY" = false ] ; then # push binaries to chacra find release/$vers/ | \ - egrep "*\.(changes|deb|ddeb|dsc|gz)$" | \ + egrep "*(\.changes|\.deb|\.ddeb|\.dsc|ceph[^/]*\.gz)$" | \ egrep -v "(Packages|Sources|Contents)" | \ $venv/chacractl binary ${chacra_flags} create ${chacra_endpoint} -- 2.39.5