From 241326a9a8c20ad7f2bcf651416b836e7778e090 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 16 Apr 2020 12:25:26 -0500 Subject: Podman V2 birth remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude --- cmd/podman/healthcheck.go | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 cmd/podman/healthcheck.go (limited to 'cmd/podman/healthcheck.go') 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) -} -- cgit v1.2.3-54-g00ecf