improve comments

correct reference
add gnome-initial-setup
This commit is contained in:
lukas 2021-08-19 19:38:42 +02:00
parent bc114380c6
commit 81ee59ce31
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
# What ? This kickstart file provides the base configuration for a hypervisor.
# 'b' for basic building block, 'h' for hypervisor', 'm' for minimal, 'd' for development only.
%packages --exclude-weakdeps
%packages --exclude-weakdeps # Beginning of the packages section. Do not include weak dependencies.
qemu-kvm
libvirt
@ -20,7 +20,7 @@ libguestfs-tools
python3-libguestfs
guestfs-tools # Complementary tools useful for interacting with vith guest systems
%end
%end # End of the packages section
%post --nochroot # Beginning of %post section. Those commands are executed outside the chroot environment

View File

@ -370,7 +370,7 @@ rm -f /boot/*-rescue*
rm -f /etc/machine-id
touch /etc/machine-id
%end
%end # End of the %post section
%post --nochroot
# For livecd-creator builds only (lorax/livemedia-creator handles this directly)

View File

@ -93,4 +93,4 @@ rm -f /var/lib/systemd/random-seed
rm -f /etc/machine-id
touch /etc/machine-id
%end
%end # End of the %post section