diff --git a/changes/add-jumpcloud-to-mdm-list b/changes/add-jumpcloud-to-mdm-list new file mode 100644 index 0000000000..2123527be0 --- /dev/null +++ b/changes/add-jumpcloud-to-mdm-list @@ -0,0 +1 @@ +* Add JumpCloud to the list of well-known MDM solutions diff --git a/server/fleet/hosts.go b/server/fleet/hosts.go index 3b57ad378b..e8b6995421 100644 --- a/server/fleet/hosts.go +++ b/server/fleet/hosts.go @@ -844,6 +844,7 @@ const ( UnknownMDMName = "" WellKnownMDMKandji = "Kandji" WellKnownMDMJamf = "Jamf" + WellKnownMDMJumpCloud = "JumpCloud" WellKnownMDMVMWare = "VMware Workspace ONE" WellKnownMDMIntune = "Intune" WellKnownMDMSimpleMDM = "SimpleMDM" @@ -853,6 +854,7 @@ const ( var mdmNameFromServerURLChecks = map[string]string{ "kandji": WellKnownMDMKandji, "jamf": WellKnownMDMJamf, + "jumpcloud": WellKnownMDMJumpCloud, "airwatch": WellKnownMDMVMWare, "microsoft": WellKnownMDMIntune, "simplemdm": WellKnownMDMSimpleMDM,