github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/domain/entities/auto-update.go (about) 1 package entities 2 3 // AutoUpdateOptions are the options for running auto-update. 4 type AutoUpdateOptions struct { 5 // Authfile to use when contacting registries. 6 Authfile string 7 } 8 9 // AutoUpdateReport contains the results from running auto-update. 10 type AutoUpdateReport struct { 11 // Units - the restarted systemd units during auto-update. 12 Units []string 13 }