mirror of
https://github.com/containers/podman.git
synced 2025-12-14 02:48:35 +08:00
Support using custom authfiles for auto updates by adding a new `--authfile` flag and passing it down into the backend. Also do some minor fixes in the help text and the man page. Fixes: #6159 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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
|
|
}
|