From 7b4b9cb858760bf5177ffa61df11c43471371093 Mon Sep 17 00:00:00 2001 From: Sarah Gillespie <73313222+gillespi314@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:13:04 -0500 Subject: [PATCH] Update CLI help to document usage of `--end-user-email` flag (#19959) --- cmd/fleetctl/package.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/fleetctl/package.go b/cmd/fleetctl/package.go index 42be130aa9..bec5ea3b7d 100644 --- a/cmd/fleetctl/package.go +++ b/cmd/fleetctl/package.go @@ -231,8 +231,7 @@ func packageCommand() *cli.Command { }, &cli.StringFlag{ Name: "end-user-email", - Hidden: true, // experimental feature, we don't want to show it for now - Usage: "Sets the email address of the user associated with the host when enrolling to Fleet. (requires Fleet >= v4.43.0)", + Usage: "End user's email that populates human to host mapping in Fleet (only available on Windows and Linux)", EnvVars: []string{"FLEETCTL_END_USER_EMAIL"}, Destination: &opt.EndUserEmail, },