mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 02:30:56 +00:00
12 lines
532 B
Go
12 lines
532 B
Go
package oval_input
|
|
|
|
// PackageInfoTestObjectXML see
|
|
// https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/linux-definitions-schema.html#dpkginfo_object
|
|
// and
|
|
// https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/linux-definitions-schema.html#rpminfo_object
|
|
// In the case of 'rpminfo_object' the 'behaviors' child element is not used for testing installed
|
|
// rpm packages.
|
|
type PackageInfoTestObjectXML struct {
|
|
Id string `xml:"id,attr"`
|
|
Name ObjectNameXML `xml:"name"`
|
|
}
|