Skip to content

Commit 3c00707

Browse files
committed
Disable the epel-cisco-openh264 repository
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]>
1 parent aaba2b8 commit 3c00707

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ elif command -v dnf >/dev/null 2>&1; then
9090
elif grep -q -E "release (9|10)" /etc/system-release; then
9191
# shellcheck disable=SC2086
9292
dnf install ${dnf_install_flags} epel-release
93-
dnf config-manager --disable epel >/dev/null 2>&1
93+
# Disable the OpenH264 repository as well, by default
94+
dnf config-manager --disable epel\* >/dev/null 2>&1
9495
dnf_install_flags="${dnf_install_flags} --enablerepo epel"
9596
fi
9697
# shellcheck disable=SC2086

0 commit comments

Comments
 (0)