2022-06-08 01:09:47 +00:00
|
|
|
package oval_input
|
|
|
|
|
|
2022-06-23 20:44:45 +00:00
|
|
|
// UbuntuResultXML groups together the different tokens produced from parsing an OVAL file targeting
|
|
|
|
|
// Ubuntu distros.
|
2022-06-08 01:09:47 +00:00
|
|
|
type UbuntuResultXML struct {
|
2022-06-23 20:44:45 +00:00
|
|
|
Definitions []DefinitionXML
|
|
|
|
|
DpkgInfoTests []DpkgInfoTestXML
|
|
|
|
|
DpkgInfoStates []DpkgInfoStateXML
|
|
|
|
|
DpkgInfoObjects []PackageInfoTestObjectXML
|
2024-05-28 19:40:32 +00:00
|
|
|
UnameTests []UnixUnameTestXML
|
|
|
|
|
UnameStates []UnixUnameStateXML
|
|
|
|
|
VariableTests []VariableTestXML
|
|
|
|
|
VariableObjects map[int]VariableObjectXML
|
|
|
|
|
VariableStates []VariableStateXML
|
2022-06-23 20:44:45 +00:00
|
|
|
Variables map[string]ConstantVariableXML
|
2022-06-08 01:09:47 +00:00
|
|
|
}
|