This patch deprecates exported system commands and moves the implementation details to an unexported function. Commands that are affected include: - system.NewVersionCommand - system.NewInfoCommand - system.NewSystemCommand - system.NewEventsCommand - system.NewInspectCommand Signed-off-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com>
34 lines
844 B
Go
34 lines
844 B
Go
package system
|
|
|
|
import (
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewSystemCommand returns a cobra command for `system` subcommands
|
|
//
|
|
// Deprecated: Do not import commands directly. They will be removed in a future release.
|
|
func NewSystemCommand(dockerCLI command.Cli) *cobra.Command {
|
|
return newSystemCommand(dockerCLI)
|
|
}
|
|
|
|
// newSystemCommand returns a cobra command for `system` subcommands
|
|
func newSystemCommand(dockerCLI command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "system",
|
|
Short: "Manage Docker",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCLI.Err()),
|
|
}
|
|
cmd.AddCommand(
|
|
newEventsCommand(dockerCLI),
|
|
newInfoCommand(dockerCLI),
|
|
newDiskUsageCommand(dockerCLI),
|
|
newPruneCommand(dockerCLI),
|
|
newDialStdioCommand(dockerCLI),
|
|
)
|
|
|
|
return cmd
|
|
}
|