standard packages and remove some unnecessary comments

This commit is contained in:
lukas 2021-07-21 17:43:38 +02:00
parent d37ed30478
commit 615ee80cc8

View File

@ -34,20 +34,14 @@ part / --fstype="ext4" --ondisk=vda --grow --label=root # The remaining space wi
bootloader --timeout=1 # Set the bootloader timeout to 1
%packages # Beginning of the packages section
@core # minimal installation
# @core # minimal installation
@standard # try the standard installation
@guest-agents # qemu-guest agent
pciutils # Pciutils provides lspci commandline tool and is not installed by default
# -fedora-logos # To be removed if we want to redistribute as Fedora Remix.
# -fedora-release-notes # To be removed if we want to redistribute as Fedora Remix.
%end # End of the packages section
%post # Beginning of the post-installation section
# dnf update -y # Update the system
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked
# sed -i 's/5/1/' /etc/default/grub # set the GRUB_TIMEOUT countdown to 1 instead of 5 seconds. This command could be used bootloader --timeout=1 in the disk section
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub. How about this command grub2-mkconfig -o /etc/grub2-efi.cfg
# reboot # Reboot the installer (doesn't work (tm))
%end # End of the %post section