package
Version:
v2.0.9+incompatible
Opens a new window with list of versions in this module.
Published: Aug 6, 2019
License: Apache-2.0
Opens a new window with license information.
Imports: 14
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package amzn implements a vulnerability source updater using
ALAS (Amazon Linux Security Advisories).
type ALAS struct {
Id string `xml:"id"`
Updated Updated `xml:"updated"`
Severity string `xml:"severity"`
Description string `xml:"description"`
Packages []Package `xml:"pkglist>collection>package"`
}
type Location struct {
Href string `xml:"href,attr"`
}
type Package struct {
Name string `xml:"name,attr"`
Epoch string `xml:"epoch,attr"`
Version string `xml:"version,attr"`
Release string `xml:"release,attr"`
}
type Repo struct {
Type string `xml:"type,attr"`
Location Location `xml:"location"`
}
type RepoMd struct {
RepoList []Repo `xml:"data"`
}
type UpdateInfo struct {
ALASList []ALAS `xml:"update"`
}
type Updated struct {
Date string `xml:"date,attr"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.