diff --git a/changes/16382-fleetctl-copy b/changes/16382-fleetctl-copy new file mode 100644 index 0000000000..6b0317202d --- /dev/null +++ b/changes/16382-fleetctl-copy @@ -0,0 +1 @@ +- Updates the copy in `fleetctl`'s output to reference `fleetd`. \ No newline at end of file diff --git a/cmd/fleetctl/package.go b/cmd/fleetctl/package.go index 7abb5029f0..15d68b6134 100644 --- a/cmd/fleetctl/package.go +++ b/cmd/fleetctl/package.go @@ -352,7 +352,7 @@ func packageCommand() *cli.Command { zlog.Logger = zerolog.Nop() } - fmt.Println("Generating your osquery installer...") + fmt.Println("Generating your fleetd agent...") path, err := buildFunc(opt) if err != nil { return err @@ -360,11 +360,11 @@ func packageCommand() *cli.Command { path, _ = filepath.Abs(path) fmt.Printf(` -Success! You generated an osquery installer at %s +Success! You generated fleetd at %s -To add this device to Fleet, double-click to open your installer. +To add this device to Fleet, double-click to install fleetd. -To add other devices to Fleet, distribute this installer using Chef, Ansible, Jamf, or Puppet. Learn how: https://fleetdm.com/docs/using-fleet/adding-hosts +To add other devices to Fleet, distribute fleetd using Chef, Ansible, Jamf, or Puppet. Learn how: https://fleetdm.com/learn-more-about/enrolling-hosts `, path) if !disableOpenFolder { open.Start(filepath.Dir(path)) //nolint:errcheck