mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-25 11:25:48 -05:00
[mount] Update schema to use arrays
This commit is contained in:
parent
21aa608ce2
commit
85c67113b7
1 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ properties:
|
|||
device: { type: string }
|
||||
fs: { type: string }
|
||||
mountPoint: { type: string }
|
||||
options: { type: string }
|
||||
options: { type: array, items: { type: string } }
|
||||
efi: { type: boolean, default: false }
|
||||
required: [ device, mountPoint ]
|
||||
btrfsSubvolumes:
|
||||
|
@ -35,9 +35,9 @@ properties:
|
|||
additionalProperties: false
|
||||
properties:
|
||||
filesystem: { type: string }
|
||||
options: { type: array }
|
||||
ssdOptions: { type: array }
|
||||
hddOptions: { type: array }
|
||||
options: { type: array, items: { type: string } }
|
||||
ssdOptions: { type: array, items: { type: string } }
|
||||
hddOptions: { type: array, items: { type: string } }
|
||||
required: [ filesystem ]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue