Skip to content

Commit

Permalink
Install fuse-sshfs rpm from epel, not powertools
Browse files Browse the repository at this point in the history
Signed-off-by: Anders F Björklund <[email protected]>
  • Loading branch information
afbjorklund committed Jun 15, 2022
1 parent a1f172a commit 6022227
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ elif command -v dnf >/dev/null 2>&1; then
dnf_install_flags="${dnf_install_flags} --repo ol8_baseos_latest --repo ol8_codeready_builder"
elif grep -q "release 8" /etc/system-release; then
dnf_install_flags="${dnf_install_flags} --enablerepo powertools"
elif grep -q "release 9" /etc/system-release; then
# shellcheck disable=SC2086
dnf install ${dnf_install_flags} epel-release
dnf config-manager --disable epel >/dev/null 2>&1
dnf_install_flags="${dnf_install_flags} --enablerepo epel"
fi
# shellcheck disable=SC2086
dnf install ${dnf_install_flags} ${pkgs}
Expand Down

0 comments on commit 6022227

Please sign in to comment.