mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-08-27 02:46:50 +00:00
f61d7092ab
- The new -j flag detects ister json config format and converts it to yaml - The existing -c flag also detects ister json config format, converts it to yaml and continues as usual - Handles the ister "rest" option for physical targets - Handles multiple targets Signed-off-by: Reagan Lopez <reagan.lopez@intel.com>
14 lines
784 B
JSON
14 lines
784 B
JSON
{
|
|
"DestinationType": "physical",
|
|
"PartitionLayout": [{"disk": "sdb", "partition": 1, "size": "512M", "type": "EFI"},
|
|
{"disk": "sdb", "partition": 2, "size": "4G", "type": "swap"},
|
|
{"disk": "sdb", "partition": 3, "size": "rest", "type": "linux"}],
|
|
"FilesystemTypes": [{"disk": "sdb", "partition": 1, "type": "vfat", "label" : "boot"},
|
|
{"disk": "sdb", "partition": 2, "type": "swap", "label" : "root"},
|
|
{"disk": "sdb", "partition": 3, "type": "ext4", "label" : "swap"}],
|
|
"PartitionMountPoints": [{"disk": "sdb", "partition": 1, "mount": "/boot"},
|
|
{"disk": "sdb", "partition": 3, "mount": "/"}],
|
|
"Version": 0,
|
|
"Bundles": ["kernel-kvm"]
|
|
}
|