summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/auto-update.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-08 16:08:11 +0200
committerGitHub <noreply@github.com>2020-05-08 16:08:11 +0200
commitbacfae646acef03e8441a8015688c7d02617f120 (patch)
tree6d327841d34a054b7107c623117dd063560a204e /pkg/domain/entities/auto-update.go
parent7c63059287d40184944b7e21ad44cc6bbb9d5925 (diff)
parent051a2bf4378bf73f5dba14b03afb53fd09e2f3f9 (diff)
downloadpodman-bacfae646acef03e8441a8015688c7d02617f120.tar.gz
podman-bacfae646acef03e8441a8015688c7d02617f120.tar.bz2
podman-bacfae646acef03e8441a8015688c7d02617f120.zip
Merge pull request #6121 from vrothberg/v2-auto-update
auto-update
Diffstat (limited to 'pkg/domain/entities/auto-update.go')
-rw-r--r--pkg/domain/entities/auto-update.go7
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
+}