add -y parameter to dnf

This commit is contained in:
Trevor Batley 2023-08-31 10:43:01 +10:00
parent 9702e91694
commit 87893cb52d

View File

@ -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) # 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 config-manager --set-enabled powertools
dnf install epel-release dnf install -y epel-release
dnf install koji-hub mod_ssl koji koji-web koji-utils policycoreutils-python-utils dnf install -y koji-hub mod_ssl koji koji-web koji-utils policycoreutils-python-utils
dnf module enable postgresql:10 dnf module enable postgresql:10
dnf install postgresql-server dnf install -y postgresql-server
## SETTING UP SSL CERTIFICATES FOR AUTHENTICATION ## SETTING UP SSL CERTIFICATES FOR AUTHENTICATION
mkdir -p "$KOJI_PKI_DIR"/{certs,private} mkdir -p "$KOJI_PKI_DIR"/{certs,private}