remove GUI virtualization

This commit is contained in:
lukas 2021-07-23 09:11:42 +02:00
parent 8cd3d381f7
commit 68b53d183d

View File

@ -19,7 +19,7 @@
%post # Beginning of %post section
dnf install -y qemu-kvm libvirt libvirt-daemon-config-network libvirt-daemon-kvm # Install minimal tools dedicated to virtualization.
dnf install -y virt-install virt-manager virt-viewer virt-top libguestfs-tools python3-libguestfs guestfs-tools # Complementary tools useful for interacting with virtual machines.
dnf install -y virt-install virt-top libguestfs-tools python3-libguestfs guestfs-tools # Complementary tools useful for interacting with virtual machines.
usermod -a -G libvirt test ## make user "test" part of the existing libvirt group to allow it to interact with the nested-hypervisor.
@ -42,6 +42,5 @@ chown test:test /var/lib/libvirt/images # Make the user "test" the owner of thi
nmcli con add ifname br0 type bridge con-name br0 # Add a network bridge
nmcli con add type bridge-slave ifname enp1s0 master br0
nmcli con up br0
%end # End of the %post section