summaryrefslogtreecommitdiff
path: root/cmd/podman/autoupdate.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-16 14:04:58 -0700
committerGitHub <noreply@github.com>2020-04-16 14:04:58 -0700
commit0d2b5532c417c58bd24e71a56c5c55b43e423a59 (patch)
tree4001e8e47a022bb1b9bfbf2332c42e1aeb802f9e /cmd/podman/autoupdate.go
parent88c6fd06cd54fb9a8826306dfdf1a77e400de5de (diff)
parent241326a9a8c20ad7f2bcf651416b836e7778e090 (diff)
downloadpodman-0d2b5532c417c58bd24e71a56c5c55b43e423a59.tar.gz
podman-0d2b5532c417c58bd24e71a56c5c55b43e423a59.tar.bz2
podman-0d2b5532c417c58bd24e71a56c5c55b43e423a59.zip
Merge pull request #5852 from baude/v1prune
Podman V2 birth
Diffstat (limited to 'cmd/podman/autoupdate.go')
-rw-r--r--cmd/podman/autoupdate.go56
1 files changed, 0 insertions, 56 deletions
diff --git a/cmd/podman/autoupdate.go b/cmd/podman/autoupdate.go
deleted file mode 100644
index 2cc1ae72e..000000000
--- a/cmd/podman/autoupdate.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- autoUpdateCommand cliconfig.AutoUpdateValues
- autoUpdateDescription = `Auto update containers according to their auto-update policy.
-
-Auto-update policies are specified with the "io.containers.autoupdate" label.`
- _autoUpdateCommand = &cobra.Command{
- Use: "auto-update [flags]",
- Short: "Auto update containers according to their auto-update policy",
- Args: noSubArgs,
- Long: autoUpdateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- restartCommand.InputArgs = args
- restartCommand.GlobalFlags = MainGlobalOpts
- return autoUpdateCmd(&restartCommand)
- },
- Example: `podman auto-update`,
- }
-)
-
-func init() {
- autoUpdateCommand.Command = _autoUpdateCommand
- autoUpdateCommand.SetHelpTemplate(HelpTemplate())
- autoUpdateCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func autoUpdateCmd(c *cliconfig.RestartValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- units, failures := runtime.AutoUpdate()
- for _, unit := range units {
- fmt.Println(unit)
- }
- var finalErr error
- if len(failures) > 0 {
- finalErr = failures[0]
- for _, e := range failures[1:] {
- finalErr = errors.Errorf("%v\n%v", finalErr, e)
- }
- }
- return finalErr
-}