Skip to content

Commit

Permalink
Disable the epel-cisco-openh264 repository
Browse files Browse the repository at this point in the history
We only want the regular system repositories by default,
but adding the epel-release package enables them on install.

Signed-off-by: Anders F Björklund <[email protected]>
  • Loading branch information
afbjorklund committed Jan 8, 2025
1 parent aaba2b8 commit 3c00707
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ elif command -v dnf >/dev/null 2>&1; then
elif grep -q -E "release (9|10)" /etc/system-release; then
# shellcheck disable=SC2086
dnf install ${dnf_install_flags} epel-release
dnf config-manager --disable epel >/dev/null 2>&1
# Disable the OpenH264 repository as well, by default
dnf config-manager --disable epel\* >/dev/null 2>&1
dnf_install_flags="${dnf_install_flags} --enablerepo epel"
fi
# shellcheck disable=SC2086
Expand Down

0 comments on commit 3c00707

Please sign in to comment.