From 17a65a887a5dac4a956fa474d5977d2ba2f41a6d Mon Sep 17 00:00:00 2001 From: luz Date: Wed, 30 Apr 2025 11:23:49 -0500 Subject: [PATCH] reorganize recipes --- recipes/desktop-hypervisor-amdcpu.cfg | 34 ++++++++++--- .../desktop-hypervisor-intelcpu-intelgpu.cfg | 35 +++++++++---- recipes/desktop-hypervisor-intelcpu.cfg | 34 ++++++++++--- recipes/desktop-hypervisor.cfg | 35 ++++++++++--- recipes/live-desktop-hypervisor.cfg | 51 +++++++++++++++++++ recipes/virtual-desktop-hypervisor.cfg | 39 ++++++++++---- recipes/virtual-desktop.cfg | 37 +++++++++++--- recipes/virtual-nano.cfg | 37 ++++++++++++-- recipes/virtual-server.cfg | 37 +++++++++++--- 9 files changed, 279 insertions(+), 60 deletions(-) create mode 100644 recipes/live-desktop-hypervisor.cfg diff --git a/recipes/desktop-hypervisor-amdcpu.cfg b/recipes/desktop-hypervisor-amdcpu.cfg index 3268293..cd1db91 100644 --- a/recipes/desktop-hypervisor-amdcpu.cfg +++ b/recipes/desktop-hypervisor-amdcpu.cfg @@ -7,27 +7,45 @@ # What ? This kickstart file bootstraps a desktop hypervisor configured for AMD (tm) CPUs. -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages %include ../ingredients/core-packages-generic.cfg # Make it a generic distribution %include ../ingredients/core-packages-custom.cfg # Hand-picked packages %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems -%include ../ingredients/base-desktop-virtual-machine-manager.cfg # the virtual machine manager -%include ../ingredients/base-hypervisor.cfg # A base hypervisor -%include ../ingredients/base-hypervisor-amdcpu.cfg # Specific virtualization configuration for AMD (tm) CPUs \ No newline at end of file +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +%include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file diff --git a/recipes/desktop-hypervisor-intelcpu-intelgpu.cfg b/recipes/desktop-hypervisor-intelcpu-intelgpu.cfg index dc3b59c..a2468ab 100644 --- a/recipes/desktop-hypervisor-intelcpu-intelgpu.cfg +++ b/recipes/desktop-hypervisor-intelcpu-intelgpu.cfg @@ -7,28 +7,45 @@ # What ? This kickstart file bootstraps a desktop hypervisor configured for Intel(tm) CPU and Intel(tm) GPUs compatible with vfio-mdev (pre-Tiger Lake) -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages %include ../ingredients/core-packages-generic.cfg # Make it a generic distribution %include ../ingredients/core-packages-custom.cfg # Hand-picked packages %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems -%include ../ingredients/base-desktop-virtual-machine-manager.cfg # the virtual machine manager -%include ../ingredients/base-hypervisor.cfg # A base hypervisor -%include ../ingredients/base-hypervisor-intelcpu.cfg # Specific virtualization configuration for Intel (tm) CPUs -%include ../ingredients/base-hypervisor-intelgpu.cfg # Specific virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +%include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +%include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file diff --git a/recipes/desktop-hypervisor-intelcpu.cfg b/recipes/desktop-hypervisor-intelcpu.cfg index 493182d..e754e9b 100644 --- a/recipes/desktop-hypervisor-intelcpu.cfg +++ b/recipes/desktop-hypervisor-intelcpu.cfg @@ -7,27 +7,45 @@ # What ? This kickstart file bootstraps a desktop hypervisor configured for Intel(tm) CPUs -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages %include ../ingredients/core-packages-generic.cfg # Make it a generic distribution %include ../ingredients/core-packages-custom.cfg # Hand-picked packages %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems -%include ../ingredients/base-desktop-virtual-machine-manager.cfg # the virtual machine manager -%include ../ingredients/base-hypervisor.cfg # A base hypervisor -%include ../ingredients/base-hypervisor-intelcpu.cfg # Specific virtualization configuration for Intel (tm) CPUs \ No newline at end of file +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +%include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +%include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file diff --git a/recipes/desktop-hypervisor.cfg b/recipes/desktop-hypervisor.cfg index 336dc88..b81efd0 100644 --- a/recipes/desktop-hypervisor.cfg +++ b/recipes/desktop-hypervisor.cfg @@ -5,28 +5,47 @@ # / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ # /_/ /____/ -# What ? This kickstart file bootstraps a desktop hypervisor. +# What ? This kickstart file bootstraps a desktop hypervisor + +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems -%include ../ingredients/core.cfg # The core configuration %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages %include ../ingredients/core-packages-generic.cfg # Make it a generic distribution %include ../ingredients/core-packages-custom.cfg # Hand-picked packages %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems -%include ../ingredients/base-desktop-virtual-machine-manager.cfg # the virtual machine manager -%include ../ingredients/base-hypervisor.cfg # A base hypervisor \ No newline at end of file +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file diff --git a/recipes/live-desktop-hypervisor.cfg b/recipes/live-desktop-hypervisor.cfg new file mode 100644 index 0000000..22240e8 --- /dev/null +++ b/recipes/live-desktop-hypervisor.cfg @@ -0,0 +1,51 @@ +# __ ____ ____ _____ +# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/ +# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \ +# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ / +# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ +# /_/ /____/ + +# What ? This kickstart file bootstraps a desktop hypervisor. + +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + +%include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + +%include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + +%include ../ingredients/core-locale.cfg # System locale + +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services +%include ../ingredients/core-network.cfg # Network configuration + +%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + +%include ../ingredients/core-packages-default.cfg # Default but not necessary packages +%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution +%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + +%include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide + +# %include ../ingredients/core-post.cfg # Post configuration script +%include ../ingredients/live-core-post.cfg # Post configuration script for a live system + +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems + +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +%include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +%include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev). \ No newline at end of file diff --git a/recipes/virtual-desktop-hypervisor.cfg b/recipes/virtual-desktop-hypervisor.cfg index d09ad12..05a9fd5 100644 --- a/recipes/virtual-desktop-hypervisor.cfg +++ b/recipes/virtual-desktop-hypervisor.cfg @@ -7,26 +7,47 @@ # What ? This kickstart file bootstraps a desktop hypervisor meant to be installed inside a virtual machine. -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages -%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution -%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution +%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems + +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +%include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev) -%include ../ingredients/base-desktop-virtual-machine-manager.cfg # the virtual machine manager -%include ../ingredients/base-hypervisor.cfg # A base hypervisor %include ../ingredients/base-guest-agents.cfg # Guest agents \ No newline at end of file diff --git a/recipes/virtual-desktop.cfg b/recipes/virtual-desktop.cfg index 0f228c4..f31749c 100644 --- a/recipes/virtual-desktop.cfg +++ b/recipes/virtual-desktop.cfg @@ -7,24 +7,47 @@ # What ? This kickstart file bootstraps a desktop machine using GNOME Shell meant to be used as a virtual machine. -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages -%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution -%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution +%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script -%include ../ingredients/core-desktop-initial-setup.cfg # Includes initial-setup for GNOME Shell, allowing for the creation of a user after the first boot, as well as some basic configuration +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system -%include ../ingredients/base-desktop-gnome.cfg # A desktop environment +%include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +# %include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems + +%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +# %include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +# %include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev) %include ../ingredients/base-guest-agents.cfg # Guest agents \ No newline at end of file diff --git a/recipes/virtual-nano.cfg b/recipes/virtual-nano.cfg index 5c45f7c..7dd5521 100644 --- a/recipes/virtual-nano.cfg +++ b/recipes/virtual-nano.cfg @@ -7,20 +7,47 @@ # # What ? This kickstart file bootstraps a server-oriented system. -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + +# %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration +# %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages -%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution + +# %include ../ingredients/core-packages-default.cfg # Default but not necessary packages +%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution +# %include ../ingredients/core-packages-custom.cfg # Hand-picked packages +# %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script -%include ../ingredients/core-server-initial-setup.cfg # Includes initial-setup so on first-boot a new user can be created +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system + +# %include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +%include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems + +# %include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +# %include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +# %include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev) %include ../ingredients/base-guest-agents.cfg # Guest agents \ No newline at end of file diff --git a/recipes/virtual-server.cfg b/recipes/virtual-server.cfg index 749a56a..ebaf78d 100644 --- a/recipes/virtual-server.cfg +++ b/recipes/virtual-server.cfg @@ -7,22 +7,47 @@ # # What ? This kickstart defines the ingredients to create a server operating artifact -%include ../ingredients/core.cfg # The core configuration +%include ../ingredients/core.cfg # Text mode for automated installation +# %include ../ingredients/live-core.cfg # Installation method for live systems + %include ../ingredients/core-storage.cfg # Storage configuration +# %include ../ingredients/live-core-storage.cfg # Basic partition layout for live systems + %include ../ingredients/core-bootloader-grub.cfg # Set bootloader to GNU GRUB +# %include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to systemd-boot + %include ../ingredients/core-locale.cfg # System locale -%include ../ingredients/core-security-off.cfg # Set security to low -%include ../ingredients/core-services.cfg # Systemd services +%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux +# %include ../ingredients/core-security-on.cfg # Lock root account, enable firewall and SELinux + +%include ../ingredients/core-services.cfg # Required systemd services %include ../ingredients/core-network.cfg # Network configuration %include ../ingredients/core-packages-mandatory.cfg # Mandatory packages +# %include ../ingredients/core-packages-mandatory-trimming-attempt.cfg # Trimming attempt for the mandatory packages + %include ../ingredients/core-packages-default.cfg # Default but not necessary packages -%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution -%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +%include ../ingredients/core-packages-generic.cfg # Make it a generic distribution +%include ../ingredients/core-packages-custom.cfg # Hand-picked packages +# %include ../ingredients/core-packages-hardware-support.cfg # Provides extended hardware support + %include ../ingredients/core-fedora-repo.cfg # Offical repositories for Fedora +# %include ../ingredients/core-fedora-repo-rawhide.cfg # Offical repositories for Fedora Rawhide %include ../ingredients/core-post.cfg # Post configuration script -%include ../ingredients/core-server-initial-setup.cfg # Includes initial-setup so on first-boot a new user can be created +#%include ../ingredients/live-core-post.cfg # Post configuration script for a live system + +# %include ../ingredients/core-desktop-initial-setup.cfg # OEM setup for GNOME Shell +%include ../ingredients/core-server-initial-setup.cfg # OEM setup for headless systems + +# %include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment + +# %include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager +# %include ../ingredients/base-hypervisor.cfg # Base hypervisor + +# %include ../ingredients/base-hypervisor-amdcpu.cfg # Virtualization configuration for AMD (tm) CPUs +# %include ../ingredients/base-hypervisor-intelcpu.cfg # Virtualization configuration for Intel (tm) CPUs +# %include ../ingredients/base-hypervisor-intelgpu.cfg # Virtualization configuration for Intel (tm) GPUs from 4th to the 9th generation (compatible with vfio-mdev) %include ../ingredients/base-guest-agents.cfg # Guest agents \ No newline at end of file