145 lines
4.2 KiB
Go
145 lines
4.2 KiB
Go
package containers
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/containers/common/pkg/completion"
|
|
"github.com/containers/podman/v5/cmd/podman/common"
|
|
"github.com/containers/podman/v5/cmd/podman/registry"
|
|
"github.com/containers/podman/v5/cmd/podman/utils"
|
|
"github.com/containers/podman/v5/cmd/podman/validate"
|
|
"github.com/containers/podman/v5/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
stopDescription = fmt.Sprintf(`Stops one or more running containers. The container name or ID can be used.
|
|
|
|
A timeout to forcibly stop the container can also be set but defaults to %d seconds otherwise.`, containerConfig.Engine.StopTimeout)
|
|
stopCommand = &cobra.Command{
|
|
Use: "stop [options] CONTAINER [CONTAINER...]",
|
|
Short: "Stop one or more containers",
|
|
Long: stopDescription,
|
|
RunE: stop,
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
return validate.CheckAllLatestAndIDFile(cmd, args, false, "cidfile")
|
|
},
|
|
ValidArgsFunction: common.AutocompleteContainersRunning,
|
|
Example: `podman stop ctrID
|
|
podman stop --time 2 mywebserver 6e534f14da9d`,
|
|
}
|
|
|
|
containerStopCommand = &cobra.Command{
|
|
Use: stopCommand.Use,
|
|
Short: stopCommand.Short,
|
|
Long: stopCommand.Long,
|
|
RunE: stopCommand.RunE,
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
return validate.CheckAllLatestAndIDFile(cmd, args, false, "cidfile")
|
|
},
|
|
ValidArgsFunction: stopCommand.ValidArgsFunction,
|
|
Example: `podman container stop ctrID
|
|
podman container stop --time 2 mywebserver 6e534f14da9d`,
|
|
}
|
|
)
|
|
|
|
var (
|
|
stopOptions = entities.StopOptions{
|
|
Filters: make(map[string][]string),
|
|
}
|
|
stopCidFiles = []string{}
|
|
stopTimeout int
|
|
)
|
|
|
|
func stopFlags(cmd *cobra.Command) {
|
|
flags := cmd.Flags()
|
|
|
|
flags.BoolVarP(&stopOptions.All, "all", "a", false, "Stop all running containers")
|
|
flags.BoolVarP(&stopOptions.Ignore, "ignore", "i", false, "Ignore errors when a specified container is missing")
|
|
|
|
cidfileFlagName := "cidfile"
|
|
flags.StringArrayVar(&stopCidFiles, cidfileFlagName, nil, "Read the container ID from the file")
|
|
_ = cmd.RegisterFlagCompletionFunc(cidfileFlagName, completion.AutocompleteDefault)
|
|
|
|
timeFlagName := "time"
|
|
flags.IntVarP(&stopTimeout, timeFlagName, "t", int(containerConfig.Engine.StopTimeout), "Seconds to wait for stop before killing the container")
|
|
_ = cmd.RegisterFlagCompletionFunc(timeFlagName, completion.AutocompleteNone)
|
|
|
|
filterFlagName := "filter"
|
|
flags.StringArrayVarP(&filters, filterFlagName, "f", []string{}, "Filter output based on conditions given")
|
|
_ = cmd.RegisterFlagCompletionFunc(filterFlagName, common.AutocompletePsFilters)
|
|
|
|
if registry.IsRemote() {
|
|
_ = flags.MarkHidden("cidfile")
|
|
_ = flags.MarkHidden("ignore")
|
|
}
|
|
|
|
flags.SetNormalizeFunc(utils.TimeoutAliasFlags)
|
|
}
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: stopCommand,
|
|
})
|
|
stopFlags(stopCommand)
|
|
validate.AddLatestFlag(stopCommand, &stopOptions.Latest)
|
|
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: containerStopCommand,
|
|
Parent: containerCmd,
|
|
})
|
|
stopFlags(containerStopCommand)
|
|
validate.AddLatestFlag(containerStopCommand, &stopOptions.Latest)
|
|
}
|
|
|
|
func stop(cmd *cobra.Command, args []string) error {
|
|
var (
|
|
errs utils.OutputErrors
|
|
)
|
|
args = utils.RemoveSlash(args)
|
|
|
|
if cmd.Flag("time").Changed {
|
|
timeout := uint(stopTimeout)
|
|
stopOptions.Timeout = &timeout
|
|
}
|
|
for _, cidFile := range stopCidFiles {
|
|
content, err := os.ReadFile(cidFile)
|
|
if err != nil {
|
|
if stopOptions.Ignore && errors.Is(err, os.ErrNotExist) {
|
|
continue
|
|
}
|
|
return fmt.Errorf("reading CIDFile: %w", err)
|
|
}
|
|
id := strings.Split(string(content), "\n")[0]
|
|
args = append(args, id)
|
|
}
|
|
|
|
for _, f := range filters {
|
|
fname, filter, hasFilter := strings.Cut(f, "=")
|
|
if !hasFilter {
|
|
return fmt.Errorf("invalid filter %q", f)
|
|
}
|
|
stopOptions.Filters[fname] = append(stopOptions.Filters[fname], filter)
|
|
}
|
|
|
|
responses, err := registry.ContainerEngine().ContainerStop(context.Background(), args, stopOptions)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, r := range responses {
|
|
switch {
|
|
case r.Err != nil:
|
|
errs = append(errs, r.Err)
|
|
case r.RawInput != "":
|
|
fmt.Println(r.RawInput)
|
|
default:
|
|
fmt.Println(r.Id)
|
|
}
|
|
}
|
|
return errs.PrintErrors()
|
|
}
|