fleet/docs/solutions
Noah Talerman 6db10ee968
Okta conditional access: Renewal is coming soon and what to do about old certificates (#43987)
Co-authored-by: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com>
2026-04-29 17:01:50 -04:00
..
all Create openclaw-detection.queries.yml (#40250) 2026-02-22 18:11:39 -05:00
android Update Android password policy and clarify how it works with BYOD (#43374) 2026-04-09 17:29:14 -05:00
api-scripts Fix Jamf sync script to update IDP username field instead of other emails (#42335) 2026-03-26 11:15:36 -04:00
cis claude/fix-cis-shebang-NTw1M (#43681) 2026-04-16 15:37:31 -04:00
docker-compose Bind docker ports to 127.0.0.1 (#42232) 2026-03-23 12:30:23 -05:00
ios-ipados Add GlobalProtect profile (#42096) 2026-03-19 14:54:30 -05:00
linux Add scripts for Linux and macOS to set hostnames (#43599) 2026-04-27 16:31:13 -04:00
macos Okta conditional access: Renewal is coming soon and what to do about old certificates (#43987) 2026-04-29 17:01:50 -04:00
tines Update Jamf API endpoints (#39146) 2026-02-06 13:58:40 -06:00
windows more Windows solutions (#43925) 2026-04-21 18:15:19 -04:00
README.md Solutions symlinks (#37732) 2025-12-29 12:42:56 -06:00

Solutions

Best Practices

General

  • Name the file what the profile does.
    • For example, instead of googlePlayProtectVerifyApps.json (the name of the Android policy for this control), describe what it does: enforce-google-play-protect.json.
  • Use kebab case in file names, with all letters in lowercase.
    • Instead of passwordPolicy.json, use password-policy.json.
  • Be sure to end files with an empty newline.

If a solution is applicable to multiple platforms, keep the original in the main platform directory and symlink it to the other platforms. For example, if an Apple configuration profile can be used on both macOS and iOS, use macOS as the source, and create a symlink in the iOS directory.

  • cd docs/solutions/ios-ipados/configuration-profiles/
    • Note that this is the destination that we want the symlink to be in.
  • ln -s ../../macos/configuration-profiles/my-profile.mobileconfig .
    • The . here at the end means the current directory, and will use the same file name as the original (which is what we want).
  • git add profile.mobileconfig
  • git commit