Skip to content

Commit

Permalink
install.sh: Fix for the virt group in the non-debian OS
Browse files Browse the repository at this point in the history
virt group package is not present in the RHEL,so replacing this group package with the RHEL's qemu-kvm package
  • Loading branch information
LakshmiSaiHarika committed Nov 27, 2024
1 parent 1fcaaa5 commit 2705deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if [ "$ID" = "debian" ] || [ "$ID_LIKE" = "debian" ]; then
apt-get -y install qemu ovmf
else
dnf install @virt edk2-ovmf -y
dnf install -y qemu-kvm edk2-ovmf
fi

if [ "$ID" = "debian" ] || [ "$ID_LIKE" = "debian" ]; then
Expand Down

0 comments on commit 2705deb

Please sign in to comment.