mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-08-03 19:07:50 +00:00
08be07cd3a
We should always use the yamlDir macro to find helper scripts relative to the yaml configuration file used. Signed-off-by: Mark D Horn <mark.d.horn@intel.com>
47 lines
780 B
YAML
47 lines
780 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: "live.img"}
|
|
]
|
|
|
|
targetMedia:
|
|
- name: ${bdevice}
|
|
size: "5.08G"
|
|
type: disk
|
|
children:
|
|
- name: ${bdevice}1
|
|
fstype: vfat
|
|
mountpoint: /boot
|
|
size: "64M"
|
|
type: part
|
|
- name: ${bdevice}2
|
|
fstype: ext4
|
|
mountpoint: /
|
|
size: "5G"
|
|
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-native
|
|
|
|
post-install: [
|
|
{cmd: "${yamlDir}/live-image-post-update-version.py ${chrootDir}"}
|
|
]
|