Skip to content

Commit 6022227

Browse files
committed
Install fuse-sshfs rpm from epel, not powertools
Signed-off-by: Anders F Björklund <[email protected]>
1 parent a1f172a commit 6022227

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ elif command -v dnf >/dev/null 2>&1; then
6767
dnf_install_flags="${dnf_install_flags} --repo ol8_baseos_latest --repo ol8_codeready_builder"
6868
elif grep -q "release 8" /etc/system-release; then
6969
dnf_install_flags="${dnf_install_flags} --enablerepo powertools"
70+
elif grep -q "release 9" /etc/system-release; then
71+
# shellcheck disable=SC2086
72+
dnf install ${dnf_install_flags} epel-release
73+
dnf config-manager --disable epel >/dev/null 2>&1
74+
dnf_install_flags="${dnf_install_flags} --enablerepo epel"
7075
fi
7176
# shellcheck disable=SC2086
7277
dnf install ${dnf_install_flags} ${pkgs}

0 commit comments

Comments
 (0)