types/lvm_vg: create 100% size lvs last

This commit is contained in:
lassulus 2023-05-12 17:22:09 +02:00
parent af27d7917d
commit e1d5b132d1

View file

@ -53,7 +53,11 @@
};
_create = diskoLib.mkCreateOption {
inherit config options;
default = _: ''
default = _:
let
sortedLvs = lib.sort (a: _: !lib.hasInfix "100%" a.size) (lib.attrValues config.lvs);
in
''
readarray -t lvm_devices < <(cat "$disko_devices_dir"/lvm_${config.name})
vgcreate ${config.name} \
"''${lvm_devices[@]}"
@ -66,7 +70,7 @@
${toString lv.extraArgs} \
${config.name}
${lib.optionalString (lv.content != null) (lv.content._create {dev = "/dev/${config.name}/${lv.name}";})}
'') (lib.attrValues config.lvs)}
'') sortedLvs}
'';
};
_mount = diskoLib.mkMountOption {