Merge pull request #1946 from dalto8/mount-schema
[mount] Update schema to use arrays
This commit is contained in:
commit
0678957def
@ -15,7 +15,7 @@ properties:
|
|||||||
device: { type: string }
|
device: { type: string }
|
||||||
fs: { type: string }
|
fs: { type: string }
|
||||||
mountPoint: { type: string }
|
mountPoint: { type: string }
|
||||||
options: { type: string }
|
options: { type: array, items: { type: string } }
|
||||||
efi: { type: boolean, default: false }
|
efi: { type: boolean, default: false }
|
||||||
required: [ device, mountPoint ]
|
required: [ device, mountPoint ]
|
||||||
btrfsSubvolumes:
|
btrfsSubvolumes:
|
||||||
@ -35,9 +35,9 @@ properties:
|
|||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
properties:
|
properties:
|
||||||
filesystem: { type: string }
|
filesystem: { type: string }
|
||||||
options: { type: array }
|
options: { type: array, items: { type: string } }
|
||||||
ssdOptions: { type: array }
|
ssdOptions: { type: array, items: { type: string } }
|
||||||
hddOptions: { type: array }
|
hddOptions: { type: array, items: { type: string } }
|
||||||
required: [ filesystem ]
|
required: [ filesystem ]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user