From e1dbbda706c2aa8f6e170d80b7478293c7dca1b8 Mon Sep 17 00:00:00 2001 From: Jahziel Villasana-Espinoza Date: Tue, 6 Feb 2024 09:30:00 -0500 Subject: [PATCH] feat: update fleetctl output to reference fleetd (#16612) > Related issue: #16382 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality --- changes/16382-fleetctl-copy | 1 + cmd/fleetctl/package.go | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 changes/16382-fleetctl-copy 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