mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-06 05:31:58 +00:00
Fix logic bug as we can not check the swapfile size when we are using the default of '0' for the partition size to use the remaining free media space. Signed-off-by: Mark D Horn <mark.d.horn@intel.com>
42 lines
679 B
YAML
42 lines
679 B
YAML
# clear-linux-config
|
|
|
|
# Switch between aliases if you want to install to an actual block device.
|
|
# i.e /dev/sda
|
|
block-devices: [
|
|
{name: "bdevice", file: "kvm-swapfile.img"}
|
|
]
|
|
|
|
targetMedia:
|
|
- name: ${bdevice}
|
|
size: "8G"
|
|
type: disk
|
|
children:
|
|
- name: ${bdevice}1
|
|
fstype: vfat
|
|
mountpoint: /boot
|
|
size: "512M"
|
|
type: part
|
|
- name: ${bdevice}2
|
|
fstype: ext4
|
|
mountpoint: /
|
|
type: part
|
|
|
|
bundles: [
|
|
bootloader,
|
|
editors,
|
|
network-basic,
|
|
openssh-server,
|
|
os-core,
|
|
os-core-update,
|
|
sysadmin-basic,
|
|
]
|
|
|
|
autoUpdate: false
|
|
postArchive: false
|
|
postReboot: false
|
|
telemetry: false
|
|
|
|
keyboard: us
|
|
language: en_US.UTF-8
|
|
kernel: kernel-kvm
|