diff options
Diffstat (limited to 'cmd/podman/healthcheck.go')
-rw-r--r-- | cmd/podman/healthcheck.go | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/cmd/podman/healthcheck.go b/cmd/podman/healthcheck.go deleted file mode 100644 index 140206dbe..000000000 --- a/cmd/podman/healthcheck.go +++ /dev/null @@ -1,27 +0,0 @@ -package main - -import ( - "github.com/containers/libpod/cmd/podman/cliconfig" - "github.com/spf13/cobra" -) - -var healthcheckDescription = "Manage health checks on containers" -var healthcheckCommand = cliconfig.PodmanCommand{ - Command: &cobra.Command{ - Use: "healthcheck", - Short: "Manage Healthcheck", - Long: healthcheckDescription, - RunE: commandRunE(), - }, -} - -// Commands that are universally implemented -var healthcheckCommands = []*cobra.Command{ - _healthcheckrunCommand, -} - -func init() { - healthcheckCommand.AddCommand(healthcheckCommands...) - healthcheckCommand.SetUsageTemplate(UsageTemplate()) - rootCmd.AddCommand(healthcheckCommand.Command) -} |