mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Update GitOps config to macOS Sonoma 14.5 (#19034)
Updates minimum macOS configuration to 14.5 for Sonoma. https://github.com/fleetdm/confidential/issues/6576 TODO: - [x] Update MDM Payload in Tines workflow. --------- Co-authored-by: Noah Talerman <47070608+noahtalerman@users.noreply.github.com>
This commit is contained in:
parent
5876681c78
commit
4a6cd9c79f
2 changed files with 6 additions and 6 deletions
|
|
@ -91,8 +91,8 @@ controls:
|
|||
enable_end_user_authentication: true
|
||||
macos_setup_assistant: null
|
||||
macos_updates:
|
||||
deadline: "2024-04-28"
|
||||
minimum_version: "14.4"
|
||||
deadline: "2024-05-31"
|
||||
minimum_version: "14.5"
|
||||
windows_settings:
|
||||
custom_settings: null
|
||||
windows_updates:
|
||||
|
|
@ -112,7 +112,7 @@ policies:
|
|||
- name: macOS - Check if latest version
|
||||
query: |
|
||||
SELECT 1 FROM os_version
|
||||
WHERE (major > 14 OR (major = 14 AND minor > 4) OR (major = 14 AND minor = 4 AND patch >= 2)) --Sonoma
|
||||
WHERE (major > 14 OR (major = 14 AND minor > 5) OR (major = 14 AND minor = 5 AND patch >= 0)); --Sonoma
|
||||
critical: false
|
||||
description: This policy check if macOS version is most recent version available.
|
||||
resolution: From the Apple menu, select System Settings. Navigate to General > Software Update.
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ controls:
|
|||
enable_end_user_authentication: true
|
||||
macos_setup_assistant: null
|
||||
macos_updates:
|
||||
deadline: "2024-03-22"
|
||||
minimum_version: "14.4"
|
||||
deadline: "2024-05-31"
|
||||
minimum_version: "14.5"
|
||||
windows_settings:
|
||||
custom_settings: null
|
||||
windows_updates:
|
||||
|
|
@ -64,7 +64,7 @@ policies:
|
|||
- name: macOS - Check if latest version
|
||||
query: |
|
||||
SELECT 1 FROM os_version
|
||||
WHERE (major > 14 OR (major = 14 AND minor > 4) OR (major = 14 AND minor = 4 AND patch >= 1)) --Sonoma
|
||||
WHERE (major > 14 OR (major = 14 AND minor > 5) OR (major = 14 AND minor = 5 AND patch >= 0)); --Sonoma
|
||||
critical: false
|
||||
description: This policy check if macOS version is most recent version available.
|
||||
resolution: From the Apple menu, select System Settings. Navigate to General > Software Update.
|
||||
|
|
|
|||
Loading…
Reference in a new issue