diff options
Diffstat (limited to 'cmd/podman/system.go')
-rw-r--r-- | cmd/podman/system.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/cmd/podman/system.go b/cmd/podman/system.go deleted file mode 100644 index 921d0c037..000000000 --- a/cmd/podman/system.go +++ /dev/null @@ -1,31 +0,0 @@ -package main - -import ( - "github.com/containers/libpod/cmd/podman/cliconfig" - "github.com/spf13/cobra" -) - -var ( - systemDescription = "Manage podman" - - systemCommand = cliconfig.PodmanCommand{ - Command: &cobra.Command{ - Use: "system", - Short: "Manage podman", - Long: systemDescription, - RunE: commandRunE(), - }, - } -) - -var systemCommands = []*cobra.Command{ - _systemResetCommand, - _infoCommand, - _pruneSystemCommand, -} - -func init() { - systemCommand.AddCommand(systemCommands...) - systemCommand.AddCommand(getSystemSubCommands()...) - systemCommand.SetUsageTemplate(UsageTemplate()) -} |