Files
phyllomeos/recipe-generator/recipes_manifest.yaml
T
Lukas Greve c193914435 Fix duplicate recipe filenames by adding hardware-support, guest-agents, and hypervisor-type suffixes
Previously, list modifiers like hardware-support, guest-agents, and hypervisor-type created multiple variants but overwrote the same filenames. Now:

1. Add '_hw' suffix when hardware-support is enabled
2. Add '_ga' suffix when guest-agents is enabled
3. Add CPU type (amdcpu, intelcpu) suffix for hypervisor variants
4. Normalize modifier names from hypervisor-type to hypervisor_type

This ensures all 144 recipes have unique filenames.
2026-03-26 10:34:35 +01:00

79 lines
2.2 KiB
YAML

# Recipe Manifest for Phyllome OS
# Define all recipe variants using generators from recipe_templates.yaml
# Edit this file to add new variants, then run: make generate-recipes
#
# Supported syntax:
# - Single values: version: "43"
# - List values: version: ["43", "rawhide"] (expands to multiple variants)
# - List modifiers: hypervisor_type: ["amdcpu", "intelcpu"] (expands to separate variants)
recipes:
# Install variants - desktop
- name: install
variants:
- name: desktop
version: ["43", "rawhide"]
desktop: gnome
storage: ["standard", "encrypted"]
bootloader: grub
hardware-support: [true, false]
guest-agents: [true, false]
initial-setup: server
security: [secure, 'off']
# Install variants - server
- name: install
variants:
- name: server
version: 43
storage: standard
bootloader: grub
hardware-support: [true, false]
guest-agents: [true, false]
initial-setup: server
security: [secure, 'off']
# Install variants - server hypervisor
- name: install
variants:
- name: hypervisor
version: ["43", "rawhide"]
storage: ["standard", "encrypted"]
bootloader: grub
hardware-support: [true, false]
guest-agents: [true, false]
hypervisor: base
hypervisor_type: ["amdcpu", "intelcpu"]
initial-setup: server
security: [secure, 'off']
# Install variants - desktop-hypervisor
- name: install
variants:
- name: hypervisor-desktop
version: ["43", "rawhide"]
desktop: gnome
storage: ["standard", "encrypted"]
bootloader: grub
hardware-support: [true, false]
hypervisor: desktop
hypervisor_type: ["amdcpu", "intelcpu"]
initial-setup: server
security: [secure, 'off']
# Live variants - desktop
- name: live
variants:
- name: desktop
version: "rawhide"
hardware-support: [true, false]
guest-agents: [true, false]
# Live variants - server
- name: live
variants:
- name: server
version: "rawhide"
hardware-support: [true, false]
guest-agents: [true, false]