- Replaced individual templates with unified 'install' (desktop, server, hypervisor) and 'live' (live-desktop, live-server) templates - Added new modifiers: variant_type, hypervisor-type, desktop, initial-setup, virtualization - Updated generate_recipe.py to handle new modifier structure with additive flags - Updated recipes_manifest.yaml with new modifier structure - Added missing fragment files and directories
15 lines
260 B
Plaintext
15 lines
260 B
Plaintext
# Live desktop hypervisor configuration
|
|
|
|
# Enable virtualization support in live environment
|
|
%packages
|
|
qemu-kvm
|
|
libvirt-client
|
|
virt-install
|
|
%end
|
|
|
|
%post --erroronfail
|
|
# Setup libvirt for live environment
|
|
mkdir -p /var/lib/libvirt
|
|
systemctl enable libvirtd
|
|
%end
|