improve comments

This commit is contained in:
2021-08-19 19:40:50 +02:00
parent 674b578872
commit f4a14b2c4f
4 changed files with 12 additions and 13 deletions

View File

@ -26,11 +26,11 @@
%include bhmd.cfg # A base hypervisor
%include bhamd.cfg # Specific virtualization configuration for AMD (tm) CPUs
%packages --exclude-weakdeps
%packages --exclude-weakdeps # Beginning of the packages section. Do not include weak dependencies.
virt-manager
virt-manager # Install virt-manager, the graphical front-end for QEMU/KVM
%end
%end # End of the packages section
%post --nochroot # Beginning of %post section. Those commands are executed outside the chroot environment
@ -38,5 +38,4 @@ usermod -a -G libvirt liveuser # Make user "liveuser" part of the existing libvi
chown liveuser:liveuser /var/lib/libvirt/iso # Make the user "liveuser" the owner of this directory
chown liveuser:liveuser /var/lib/libvirt/images # Make the user "test" the owner of this directory
%end
%end # End of the %post section