Use "Fleet's agent (fleetd)" naming in the UI (#18238)

For https://github.com/fleetdm/fleet/issues/16512

---------

Co-authored-by: Noah Talerman <47070608+noahtalerman@users.noreply.github.com>
This commit is contained in:
Rachael Shaw 2024-04-25 10:33:29 -05:00 committed by GitHub
parent 0ccc7f6244
commit 2c9978ef21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 11 deletions

View file

@ -50,9 +50,7 @@ const DeleteSecretModal = ({
unable to enroll.
</p>
<p>
Any enrolled hosts using this secret will not receive updates
through Orbit including updates to agent options and command line
flags.
Hosts that enrolled with this secret will not get updates to agent options.
</p>
<p>
Follow this guide to{" "}

View file

@ -57,9 +57,9 @@ const EmptyMdmStatus = (): JSX.Element => (
<>
To see MDM versions, deploy&nbsp;
<CustomLink
url="https://fleetdm.com/docs/using-fleet/adding-hosts#osquery-installer"
url="https://fleetdm.com/learn-more-about/fleetd"
newTab
text="Fleet's osquery installer"
text="Fleet's agent (fleetd)"
/>
</>
}

View file

@ -109,8 +109,8 @@ const Munki = ({
<>
To see Munki versions, deploy&nbsp;
<CustomLink
url="https://fleetdm.com/docs/using-fleet/adding-hosts#osquery-installer"
text="Fleet's osquery installer"
url="https://fleetdm.com/learn-more-about/fleetd"
text="Fleet's agent (fleetd)"
newTab
/>
.

View file

@ -81,7 +81,7 @@ const Agents = ({
<SectionHeader title="Agent options" />
<form onSubmit={onFormSubmit} autoComplete="off">
<p className={`${baseClass}__section-description`}>
Agent options configure the osquery agent. When you update agent
Agent options configure Fleet's agent (fleetd). When you update agent
options, they will be applied the next time a host checks in to
Fleet.{" "}
<CustomLink

View file

@ -142,7 +142,7 @@ const AgentOptionsPage = ({
return (
<div className={`${baseClass}`}>
<p className={`${baseClass}__page-description`}>
Agent options configure the osquery agent. When you update agent
Agent options configure Fleet's agent (fleetd). When you update agent
options, they will be applied the next time a host checks in to Fleet.
<br />
<CustomLink

View file

@ -1462,7 +1462,7 @@ const ManageHostsPage = ({
"Expecting to see new hosts? Try again in a few seconds as the system catches up.";
} else if (canEnrollHosts) {
emptyHosts.header = "Add your hosts to Fleet";
emptyHosts.info = "Generate an installer to add your own hosts.";
emptyHosts.info = "Generate Fleet's agent (fleetd) to add your own hosts.";
emptyHosts.primaryButton = (
<Button variant="brand" onClick={toggleAddHostsModal} type="button">
Add hosts

View file

@ -126,7 +126,7 @@ export const DEFAULT_POLICIES: IPolicyNew[] = [
query: "SELECT 1 FROM mdm WHERE enrolled='true';",
name: "MDM enrolled (macOS)",
description:
"Required: osquery deployed with Orbit, or manual installation of macadmins/osquery-extension. Checks that a Mac is enrolled to MDM. Add a AND on identity_certificate_uuid to check for a specific MDM.",
"Checks that a Mac is enrolled to MDM. Add a AND on identity_certificate_uuid to check for a specific MDM.",
resolution: "Enroll device to MDM",
critical: false,
platform: "darwin",