From 9893221392bcd32aed863603553de49fa534e3d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Mon, 21 Feb 2022 18:13:54 +0100 Subject: [PATCH] config: add mounts for boot v2 --- config/config.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/config.go b/config/config.go index dc9a902..6e2c7b0 100644 --- a/config/config.go +++ b/config/config.go @@ -64,6 +64,8 @@ type Config struct { Storage StorageConfig + Mounts []MountDef + Groups []GroupDef Users []UserDef @@ -94,6 +96,12 @@ type VolumeDef struct { } } +type Mount struct { + Dev string + Path string + Options string +} + type GroupDef struct { Name string Gid int