summaryrefslogtreecommitdiff
path: root/cmd/podman/umount.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-16 12:25:26 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-16 15:53:58 -0500
commit241326a9a8c20ad7f2bcf651416b836e7778e090 (patch)
tree4001e8e47a022bb1b9bfbf2332c42e1aeb802f9e /cmd/podman/umount.go
parent88c6fd06cd54fb9a8826306dfdf1a77e400de5de (diff)
downloadpodman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.gz
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.bz2
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.zip
Podman V2 birth
remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/umount.go')
-rw-r--r--cmd/podman/umount.go62
1 files changed, 0 insertions, 62 deletions
diff --git a/cmd/podman/umount.go b/cmd/podman/umount.go
deleted file mode 100644
index 6ad485c2c..000000000
--- a/cmd/podman/umount.go
+++ /dev/null
@@ -1,62 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- umountCommand cliconfig.UmountValues
-
- description = `Container storage increments a mount counter each time a container is mounted.
-
- When a container is unmounted, the mount counter is decremented. The container's root filesystem is physically unmounted only when the mount counter reaches zero indicating no other processes are using the mount.
-
- An unmount can be forced with the --force flag.
-`
- _umountCommand = &cobra.Command{
- Use: "umount [flags] CONTAINER [CONTAINER...]",
- Aliases: []string{"unmount"},
- Short: "Unmounts working container's root filesystem",
- Long: description,
- RunE: func(cmd *cobra.Command, args []string) error {
- umountCommand.InputArgs = args
- umountCommand.GlobalFlags = MainGlobalOpts
- umountCommand.Remote = remoteclient
- return umountCmd(&umountCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman umount ctrID
- podman umount ctrID1 ctrID2 ctrID3
- podman umount --all`,
- }
-)
-
-func init() {
- umountCommand.Command = _umountCommand
- umountCommand.SetHelpTemplate(HelpTemplate())
- umountCommand.SetUsageTemplate(UsageTemplate())
- flags := umountCommand.Flags()
- flags.BoolVarP(&umountCommand.All, "all", "a", false, "Umount all of the currently mounted containers")
- flags.BoolVarP(&umountCommand.Force, "force", "f", false, "Force the complete umount all of the currently mounted containers")
- flags.BoolVarP(&umountCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func umountCmd(c *cliconfig.UmountValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.UmountRootFilesystems(getContext(), c)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}