From 1766da2c387ba14dd0c8ac5b63ba2186f0f5dbfc Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Thu, 31 Aug 2023 15:30:27 +1000 Subject: [PATCH] need epel to install koji-builder --- koji-setup/deploy-koji-builder.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koji-setup/deploy-koji-builder.sh b/koji-setup/deploy-koji-builder.sh index 4349500..65e0dcd 100755 --- a/koji-setup/deploy-koji-builder.sh +++ b/koji-setup/deploy-koji-builder.sh @@ -7,7 +7,9 @@ SCRIPT_DIR="$(dirname "$(realpath "$0")")" source "$SCRIPT_DIR"/globals.sh source "$SCRIPT_DIR"/parameters.sh -dnf install koji-builder +# Install the koji builder componelts from epel +dnf install -y epel-release +dnf install -y koji-builder # Create mock folders and permissions mkdir -p /etc/mock/koji