cleaning the files, removing most references to Fedora, before comprehensive testing

This commit is contained in:
2021-08-18 15:01:51 +02:00
parent 4485e50f5e
commit a0c7208c3f
15 changed files with 56 additions and 85 deletions

View File

@ -5,7 +5,7 @@
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/
#
# What ? This kickstart file provides a base system based on Fedora 34 server.
# What ? This kickstart file provides a base system based on Fedora 34.
# 'b' for basic building block, 'm' for minimal, 'd' for development only.
# Know bug: Cannot resolve host name
@ -35,15 +35,15 @@ firewall --enabled # Make sure the firewall is enabled
services --enabled=NetworkManager --disabled=sshd
network --onboot=yes --bootproto=dhcp --device=link --activate --hostname=phyllome # Configure network interfaces and set hostname
# ignoredisk --only-use=vda # Only use disk labelled as vda
zerombr # WARNING : Dangerous command ! Will clear the Master Boot Record
clearpart --all --initlabel # --drives=vda # Partition clearing information. This setup uses GPT by default.
clearpart --all --initlabel # Partition clearing information. This setup uses GPT by default.
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi # Will create an efi partitition of 128 MiB (vda1)
part /boot --fstype="ext4" --size=384 --label=boot # Create a boot partition of 384 MiB using the ext4 filesystem (vda2).
part / --fstype="ext4" --grow --label=root # The remaining space will be used for root (vda3).
bootloader --timeout=1 # Set the Grub bootloader timeout to 1
reboot --kexec # Reboot straight inot the system after a successfull installation
poweroff # Power off the system after a sucessfull installation
# reboot --kexec # Reboot straight into the system after a successfull installation
# firstboot --enable # Initial Setup will start after the first reboot
%packages --exclude-weakdeps # Beginning of the packages section. Do not include weak dependencies.