mirror of
https://github.com/containers/podman.git
synced 2025-11-08 19:06:13 +08:00
When we pause `rootless cgroups v1 container`, podman returns error from `libpod.(*Container).pause`. Podman does not need to return error from `containers.pause` because of duplicate. [NO NEW TESTS NEEDED] Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
83 lines
2.2 KiB
Go
83 lines
2.2 KiB
Go
package containers
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/containers/podman/v4/cmd/podman/common"
|
|
"github.com/containers/podman/v4/cmd/podman/registry"
|
|
"github.com/containers/podman/v4/cmd/podman/utils"
|
|
"github.com/containers/podman/v4/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
var (
|
|
pauseDescription = `Pauses one or more running containers. The container name or ID can be used.`
|
|
pauseCommand = &cobra.Command{
|
|
Use: "pause [options] CONTAINER [CONTAINER...]",
|
|
Short: "Pause all the processes in one or more containers",
|
|
Long: pauseDescription,
|
|
RunE: pause,
|
|
ValidArgsFunction: common.AutocompleteContainersRunning,
|
|
Example: `podman pause mywebserver
|
|
podman pause 860a4b23
|
|
podman pause -a`,
|
|
}
|
|
|
|
containerPauseCommand = &cobra.Command{
|
|
Use: pauseCommand.Use,
|
|
Short: pauseCommand.Short,
|
|
Long: pauseCommand.Long,
|
|
RunE: pauseCommand.RunE,
|
|
ValidArgsFunction: pauseCommand.ValidArgsFunction,
|
|
Example: `podman container pause mywebserver
|
|
podman container pause 860a4b23
|
|
podman container pause -a`,
|
|
}
|
|
|
|
pauseOpts = entities.PauseUnPauseOptions{}
|
|
)
|
|
|
|
func pauseFlags(flags *pflag.FlagSet) {
|
|
flags.BoolVarP(&pauseOpts.All, "all", "a", false, "Pause all running containers")
|
|
}
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: pauseCommand,
|
|
})
|
|
flags := pauseCommand.Flags()
|
|
pauseFlags(flags)
|
|
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: containerPauseCommand,
|
|
Parent: containerCmd,
|
|
})
|
|
containerPauseFlags := containerPauseCommand.Flags()
|
|
pauseFlags(containerPauseFlags)
|
|
}
|
|
|
|
func pause(cmd *cobra.Command, args []string) error {
|
|
var (
|
|
errs utils.OutputErrors
|
|
)
|
|
|
|
if len(args) < 1 && !pauseOpts.All {
|
|
return errors.New("you must provide at least one container name or id")
|
|
}
|
|
responses, err := registry.ContainerEngine().ContainerPause(context.Background(), args, pauseOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, r := range responses {
|
|
if r.Err == nil {
|
|
fmt.Println(r.Id)
|
|
} else {
|
|
errs = append(errs, r.Err)
|
|
}
|
|
}
|
|
return errs.PrintErrors()
|
|
}
|