From 85c67113b772517c78f7b83677243424b368da2b Mon Sep 17 00:00:00 2001 From: dalto Date: Mon, 9 May 2022 06:50:33 -0500 Subject: [PATCH] [mount] Update schema to use arrays --- src/modules/mount/mount.schema.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/mount/mount.schema.yaml b/src/modules/mount/mount.schema.yaml index 0392c1120..a083ed75a 100644 --- a/src/modules/mount/mount.schema.yaml +++ b/src/modules/mount/mount.schema.yaml @@ -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 ]