diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-05-07 19:28:38 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-05-08 11:13:42 +0200 |
commit | 051a2bf4378bf73f5dba14b03afb53fd09e2f3f9 (patch) | |
tree | c2343b9fa53fe2b19e2c2e30536cd62131ddca1a /pkg/domain/entities/auto-update.go | |
parent | ab518cdba02b85a32d3c2bce4c0b65dcdea4dfcc (diff) | |
download | podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.tar.gz podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.tar.bz2 podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.zip |
auto-update
Add the `podman auto-update` command. There have been no tests in v1, so
there are no in v2 either ... for now :)
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain/entities/auto-update.go')
-rw-r--r-- | pkg/domain/entities/auto-update.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/domain/entities/auto-update.go b/pkg/domain/entities/auto-update.go new file mode 100644 index 000000000..aef8fc46b --- /dev/null +++ b/pkg/domain/entities/auto-update.go @@ -0,0 +1,7 @@ +package entities + +// AutoUpdateReport contains the results from running auto-update. +type AutoUpdateReport struct { + // Units - the restarted systemd units during auto-update. + Units []string +} |