From 87893cb52d3bcdbd459db6403dbcc558b73dd3d5 Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Thu, 31 Aug 2023 10:43:01 +1000 Subject: [PATCH] add -y parameter to dnf --- koji-setup/deploy-koji.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koji-setup/deploy-koji.sh b/koji-setup/deploy-koji.sh index 5443e8e..58082bc 100755 --- a/koji-setup/deploy-koji.sh +++ b/koji-setup/deploy-koji.sh @@ -9,10 +9,10 @@ source "$SCRIPT_DIR"/parameters.sh # Install all the required packages (some live in the epel repo, so we need to install that too) dnf config-manager --set-enabled powertools -dnf install epel-release -dnf install koji-hub mod_ssl koji koji-web koji-utils policycoreutils-python-utils +dnf install -y epel-release +dnf install -y koji-hub mod_ssl koji koji-web koji-utils policycoreutils-python-utils dnf module enable postgresql:10 -dnf install postgresql-server +dnf install -y postgresql-server ## SETTING UP SSL CERTIFICATES FOR AUTHENTICATION mkdir -p "$KOJI_PKI_DIR"/{certs,private}