filesystem: LVM_VolGroup has a list of devices, not a set

Signed-off-by: Olivier Gayot <olivier.gayot@canonical.com>
This commit is contained in:
Olivier Gayot 2024-01-16 15:00:13 +01:00
parent c95716669c
commit e83343c02c
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ def make_vg(model, pvs=None):
name = "vg%s" % len(model._actions)
if pvs is None:
pvs = {make_disk(model)}
pvs = [make_disk(model)]
return model.add_volgroup(name, pvs)