mirror of https://github.com/containers/podman.git
14 lines
356 B
Go
14 lines
356 B
Go
package entities
|
|
|
|
// AutoUpdateOptions are the options for running auto-update.
|
|
type AutoUpdateOptions struct {
|
|
// Authfile to use when contacting registries.
|
|
Authfile string
|
|
}
|
|
|
|
// AutoUpdateReport contains the results from running auto-update.
|
|
type AutoUpdateReport struct {
|
|
// Units - the restarted systemd units during auto-update.
|
|
Units []string
|
|
}
|