Add FreeBSD version to JailHost struct

This commit is contained in:
yo 2022-06-19 13:55:41 +02:00
parent f919ff2ec3
commit fcf7d68d06

View File

@ -515,12 +515,20 @@ type SnapshotSort struct {
CreationDec snapshotLessFunc
}
type FreeBSDVersion struct {
major int
minor int
flavor string
patchLevel int
}
type JailHost struct {
hostname string
hostid string
default_gateway4 string
default_gateway6 string
default_interface string
version FreeBSDVersion
}
type Datastore struct {