mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
16 lines
555 B
Go
16 lines
555 B
Go
package oval_input
|
|
|
|
// UbuntuResultXML groups together the different tokens produced from parsing an OVAL file targeting
|
|
// Ubuntu distros.
|
|
type UbuntuResultXML struct {
|
|
Definitions []DefinitionXML
|
|
DpkgInfoTests []DpkgInfoTestXML
|
|
DpkgInfoStates []DpkgInfoStateXML
|
|
DpkgInfoObjects []PackageInfoTestObjectXML
|
|
UnameTests []UnixUnameTestXML
|
|
UnameStates []UnixUnameStateXML
|
|
VariableTests []VariableTestXML
|
|
VariableObjects map[int]VariableObjectXML
|
|
VariableStates []VariableStateXML
|
|
Variables map[string]ConstantVariableXML
|
|
}
|