This PR adds support for CIS Controls for macOS 14 - Sonoma. The CIS Control changes from macOS 13 to 14 was minimal: - Removed 5.9 - Added 2.18.1 - tested by running the test profile (ee/cis/macos-14/test/profiles/on-device-dictiation-enabled.mobileconfig) --------- Co-authored-by: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com>
9 lines
493 B
Bash
Executable File
9 lines
493 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# NOTE(lucas): I was not able to set `com.apple.TimeMachine`'s `AutoBackup` via a configuration profile.
|
|
# I tried the profile method documented on the CIS Benchmarks document and after applying it successfully
|
|
# it did not update the value of `AutoBackup`.
|
|
#
|
|
# So for now we are using the following shell command to enable automatic backup of Time Machine destinations.
|
|
/usr/bin/sudo /usr/bin/defaults write /Library/Preferences/com.apple.TimeMachine.plist AutoBackup -bool true
|