config: add mounts for boot v2

This commit is contained in:
Mikaël Cluseau 2022-02-21 18:13:54 +01:00
parent 96b0448b84
commit 9893221392

View File

@ -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