diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/auto-update.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/auto-update.go b/cmd/podman/auto-update.go index 99226790f..34cc7d74b 100644 --- a/cmd/podman/auto-update.go +++ b/cmd/podman/auto-update.go @@ -50,7 +50,9 @@ func autoUpdate(cmd *cobra.Command, args []string) error { return errors.Errorf("`%s` takes no arguments", cmd.CommandPath()) } report, failures := registry.ContainerEngine().AutoUpdate(registry.GetContext(), autoUpdateOptions) - if report != nil { + if report != nil && len(report.Units) > 0 { + // Make it more obvious to users what the output means. + fmt.Println("\nRestarted the following systemd units:") for _, unit := range report.Units { fmt.Println(unit) } |