diff --git a/cmd/crowdsec-cli/console.go b/cmd/crowdsec-cli/console.go index c18fded9e..d7d05f53b 100644 --- a/cmd/crowdsec-cli/console.go +++ b/cmd/crowdsec-cli/console.go @@ -131,7 +131,7 @@ After running this command your will need to validate the enrollment in the weba cmdEnable := &cobra.Command{ Use: "enable [feature-flag]", Short: "Enable a feature flag", - Example: "enable alerts-tainted", + Example: "enable tainted", Long: ` Enable given information push to the central API. Allows to empower the console`, ValidArgs: csconfig.CONSOLE_CONFIGS, @@ -159,7 +159,7 @@ Enable given information push to the central API. Allows to empower the console` cmdDisable := &cobra.Command{ Use: "disable [feature-flag]", Short: "Disable a feature flag", - Example: "disable alerts-tainted", + Example: "disable tainted", Long: ` Disable given information push to the central API.`, ValidArgs: csconfig.CONSOLE_CONFIGS, @@ -189,7 +189,7 @@ Disable given information push to the central API.`, cmdConsoleStatus := &cobra.Command{ Use: "status [feature-flag]", Short: "Shows status of one or all feature flags", - Example: "status alerts-tainted", + Example: "status tainted", DisableAutoGenTag: true, Run: func(cmd *cobra.Command, args []string) { switch csConfig.Cscli.Output {