mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
## Cherry-pick of #41517 This cherry-picks the squash merge commit from https://github.com/fleetdm/fleet/pull/41517 onto the `rc-minor-fleet-v4.83.0` release branch. **Original PR:** Update "Add hosts" modal copy (#41517) --- Built for [Rachael Shaw](https://fleetdm.slack.com/archives/D0AFC5BRFHD/p1774644488958259) by [Kilo for Slack](https://kilo.ai/features/slack-integration) Co-authored-by: Rachael Shaw <r@rachael.wtf> Co-authored-by: Jacob Shandling <jacob@shandling.dev>
This commit is contained in:
parent
f99f7f5ee1
commit
81564ee987
2 changed files with 11 additions and 10 deletions
|
|
@ -240,11 +240,11 @@ const PlatformWrapper = ({
|
|||
<>
|
||||
{packageType !== "plain-osquery" && (
|
||||
<span className={`${baseClass}__cta`}>
|
||||
Generate your installer with the{" "}
|
||||
Use this command to generate Fleet's agent.{" "}
|
||||
<CustomLink
|
||||
className={`${baseClass}__command-line-tool`}
|
||||
url={`${LEARN_MORE_ABOUT_BASE_LINK}/installing-fleetctl`}
|
||||
text="Fleet command-line tool"
|
||||
url={`${LEARN_MORE_ABOUT_BASE_LINK}/generate-fleets-agent`}
|
||||
text="Learn how"
|
||||
newTab
|
||||
/>
|
||||
</span>
|
||||
|
|
@ -271,23 +271,23 @@ const PlatformWrapper = ({
|
|||
if (packageType === "deb") {
|
||||
packageTypeHelpText = (
|
||||
<>
|
||||
Run this on your admin computer, then deploy the generated package to
|
||||
your hosts. For CentOS, Red Hat, and Fedora Linux, use{" "}
|
||||
Run this on your computer, then deploy the generated package to your
|
||||
hosts. For CentOS, Red Hat, and Fedora Linux, use{" "}
|
||||
<code>--type=rpm</code>. For Arch Linux, use{" "}
|
||||
<code>--type=pkg.tar.zst</code>.<br />
|
||||
For ARM, use <code>--arch=arm64</code>
|
||||
<code>--type=pkg.tar.zst</code>. For ARM, use{" "}
|
||||
<code>--arch=arm64</code>
|
||||
</>
|
||||
);
|
||||
} else if (packageType === "msi") {
|
||||
packageTypeHelpText = (
|
||||
<>
|
||||
Run this on your admin computer, then deploy the generated package to
|
||||
your hosts. For ARM, use <code>--arch=arm64</code>
|
||||
Run this on your computer, then deploy the generated package to your
|
||||
hosts. For ARM, use <code>--arch=arm64</code>
|
||||
</>
|
||||
);
|
||||
} else if (packageType === "pkg") {
|
||||
packageTypeHelpText =
|
||||
"Run this on your admin computer, then install the generated package on your hosts.";
|
||||
"Run this on your computer, then deploy the generated package to your hosts.";
|
||||
} else {
|
||||
packageTypeHelpText = "";
|
||||
}
|
||||
|
|
|
|||
1
website/config/routes.js
vendored
1
website/config/routes.js
vendored
|
|
@ -1228,6 +1228,7 @@ module.exports.routes = {
|
|||
'GET /learn-more-about/recovery-lock-passwords': 'https://developer.apple.com/documentation/devicemanagement/set-recovery-lock-command',
|
||||
'GET /learn-more-about/startup-security-macos': 'https://support.apple.com/guide/deployment/startup-security-dep5810e849c',
|
||||
'GET /learn-more-about/unlock-ios-ipados': 'https://fleetdm.com/guides/lock-wipe-hosts#how-to-unlock-offline-ios-and-ipados-hosts',
|
||||
'GET /learn-more-about/generate-fleets-agent': 'https://fleetdm.com/guides/enroll-hosts#ui',
|
||||
'GET /learn-more-about/certificates': '/guides/connect-end-user-to-wifi-with-certificate',
|
||||
|
||||
// Sitemap
|
||||
|
|
|
|||
Loading…
Reference in a new issue