blob: c51158816b27dc316e4b5a54969dfac106d4aab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|