# Generated by pykickstart v3.62 #version=DEVEL # Use text mode install text # Firewall configuration firewall --disabled # Run the Setup Agent on first boot firstboot --reconfig # Keyboard layouts keyboard --xlayouts='ch (fr)' # System language lang en_US.UTF-8 # Network information network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate # Shutdown after installation shutdown repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch # Root password rootpw --iscrypted --lock locked # SELinux configuration selinux --disabled # System services services --enabled="NetworkManager,libvirtd" # System timezone timezone Europe/Paris --utc # Use network installation url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch" # System bootloader configuration bootloader --location=mbr --timeout=1 # Clear the Master Boot Record zerombr # Partition clearing information clearpart --all --initlabel # Disk partitioning information part /boot/efi --fstype="efi" --size=1024 --fsoptions="umask=0077,shortname=winnt" --label=efi part /boot --fstype="ext4" --size=512 --label=boot part / --fstype="ext4" --grow --label=root %post --logfile=/mnt/sysimage/root/post.log localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked. dnf update -y # Update the system grub2-mkconfig -o /boot/grub2/grub.cfg # Unsure it is actually useful %end %post --nochroot --logfile=/mnt/sysimage/opt/base-hypervisor.log # Load kernel modules by adding vfio, vfio_pci, vfio_iommu_type1, vfio_virqfd echo "vfio" > /mnt/sysimage/etc/modules-load.d/vfio.conf echo "vfio-pci" > /mnt/sysimage/etc/modules-load.d/vfio-pci.conf echo "vfio_iommu_type1" > /mnt/sysimage/etc/modules-load.d/vfio_iommu_type1.conf echo "vfio_virqfd" > /mnt/sysimage/etc/modules-load.d/vfio_virqfd.conf mkdir /mnt/sysimage/var/lib/libvirt/isos # Create a directory to store iso images. SELinux is already taking this one into account. # wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/isos/ # fetch netboot.xyz iso and store it to the newly created iso directory # # virsh commands fail in a kickstart environment (chroot or not it seems). would need to fetch a script and execute post-launch with a delay, for example using a systemd unit # virsh pool-define-as isos dir - - - - /mnt/sysimage/var/lib/libvirt/isos/ # Make libvirt aware of this new directory by creating a so-called 'pool'. # virsh pool-build isos # Build the pool # virsh pool-start isos # Start it # virsh pool-autostart isos # Set-it to autostart # fetch custom script and make it executable # wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/local/bin/ # chmod +x /mnt/sysimage/usr/local/bin/virtualization-tweaks-root-needed.sh # wget https://raw.githubusercontent.com/PhyllomeOS/xml-definition-for-domains/main/xml/system/linux.xml # virsh define linux.xml # wget https://raw.githubusercontent.com/PhyllomeOS/xml-definition-for-domains/main/xml/system/windows.xml # virsh define windows.xml %end %packages --exclude-weakdeps NetworkManager NetworkManager-config-connectivity-fedora audit basesystem bash coreutils curl dhcp-client dnf5 dnf5-plugins dracut dracut-config-rescue e2fsprogs fedora-remix-logos filesystem firewalld fwupd generic-logos generic-release generic-release-common generic-release-notes glibc guestfs-tools hostname initial-setup iproute iputils kbd kernel less libguestfs-tools libusb libvirt libvirt-daemon-config-network libvirt-daemon-kvm man-db nano ncurses openssh-clients openssh-server parted pciutils plymouth policycoreutils prefixdevname procps-ng python3-libguestfs qemu-guest-agent qemu-kvm rootfiles rpm selinux-policy-targeted setup shadow-utils spice-vdagent sssd-common sssd-kcm sudo systemd systemd-resolved usbutils util-linux vim-minimal virt-install virt-top wget zram-generator-defaults -fedora-logos -fedora-release -fedora-release-common -fedora-release-identity-basic -fedora-release-notes %end