From d20c2c0b1da87bccefb87ae31154eeb02d142b52 Mon Sep 17 00:00:00 2001 From: Durga Sarat Chandra Maddu <44021874+Dmaddu@users.noreply.github.com> Date: Wed, 24 Jul 2024 18:59:52 +0000 Subject: [PATCH] white listing the start command (#8498) * white listing the start command Signed-off-by: Durga Sarat Chandra Maddu * Whitelisted config show command Signed-off-by: daveaugustus * Whitelisted config show command Signed-off-by: daveaugustus --------- Signed-off-by: Durga Sarat Chandra Maddu Signed-off-by: daveaugustus Co-authored-by: daveaugustus --- components/automate-cli/cmd/chef-automate/start_linx.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/automate-cli/cmd/chef-automate/start_linx.go b/components/automate-cli/cmd/chef-automate/start_linx.go index 9cdab4a981c..7478097c0fd 100644 --- a/components/automate-cli/cmd/chef-automate/start_linx.go +++ b/components/automate-cli/cmd/chef-automate/start_linx.go @@ -34,10 +34,10 @@ var startCmdFlags = struct { }{} var startCommand = &cobra.Command{ - Use: "start", - Short: "Start Chef Automate", - PersistentPreRunE: WarnLicenseStatusForExpiry, - RunE: runStartCmd, + Use: "start", + Short: "Start Chef Automate", + // PersistentPreRunE: WarnLicenseStatusForExpiry, + RunE: runStartCmd, Annotations: map[string]string{ docs.Tag: docs.BastionHost, },