Skip to content

Commit 3bdfe5a

Browse files
packaging: fix publish script (#6316)
Signed-off-by: Patrick Stephens <pat@calyptia.com> Signed-off-by: Patrick Stephens <pat@calyptia.com>
1 parent d93931b commit 3bdfe5a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packaging/server/publish-all.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ if [[ -n "$CREATE_REPO_CMD" ]]; then
3333
echo "Using $CREATE_REPO_CMD"
3434
elif command -v createrepo &> /dev/null; then
3535
echo "Found createrepo"
36-
CREATE_REPO_CMD="createrepo -dvp"
36+
CREATE_REPO_CMD="createrepo"
3737
elif command -v createrepo_c &> /dev/null; then
3838
echo "Found createrepo_c"
39-
CREATE_REPO_CMD="createrepo_c -dvp"
39+
CREATE_REPO_CMD="createrepo_c"
4040
else
4141
echo "Unable to find a command equivalent to createrepo"
4242
exit 1

packaging/test-release-packages.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ APT_TARGETS=("ubuntu:18.04"
2020
YUM_TARGETS=("centos:7"
2121
"rockylinux:8"
2222
"quay.io/centos/centos:stream9"
23-
"amazonlinux:2")
23+
"amazonlinux:2"
24+
"amazonlinux:2022")
2425

2526
for IMAGE in "${APT_TARGETS[@]}"
2627
do
@@ -39,5 +40,5 @@ do
3940
-e FLUENT_BIT_PACKAGES_URL="${FLUENT_BIT_PACKAGES_URL:-https://packages.fluentbit.io}" \
4041
-e FLUENT_BIT_PACKAGES_KEY="${FLUENT_BIT_PACKAGES_KEY:-https://packages.fluentbit.io/fluentbit.key}" \
4142
"$IMAGE" \
42-
sh -c "yum update -y curl sudo;curl $INSTALL_SCRIPT | sh"
43+
sh -c "yum install -y sudo;curl $INSTALL_SCRIPT | sh"
4344
done

0 commit comments

Comments
 (0)