-
Notifications
You must be signed in to change notification settings - Fork 288
Replace deprecated com.apple.SoftwareUpdate payload with supported configuration #653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,3 +54,8 @@ mobileconfig: true | |
| mobileconfig_info: | ||
| com.apple.SoftwareUpdate: | ||
| CriticalUpdateInstall: true | ||
| ddm_info: | ||
| declarationtype: com.apple.configuration.softwareupdate.settings | ||
| ddm_key: AutomaticActions | ||
| ddm_value: | ||
| InstallSecurityUpdates: AlwaysOn | ||
|
Comment on lines
+57
to
+61
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,3 +42,8 @@ mobileconfig: true | |
| mobileconfig_info: | ||
| com.apple.SoftwareUpdate: | ||
| AutomaticallyInstallMacOSUpdates: true | ||
| ddm_info: | ||
| declarationtype: com.apple.configuration.softwareupdate.settings | ||
| ddm_key: AutomaticActions | ||
| ddm_value: | ||
| InstallOSUpdates: AlwaysOn | ||
|
Comment on lines
+45
to
+49
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,3 +42,8 @@ mobileconfig: true | |
| mobileconfig_info: | ||
| com.apple.SoftwareUpdate: | ||
| AutomaticDownload: true | ||
| ddm_info: | ||
| declarationtype: com.apple.configuration.softwareupdate.settings | ||
| ddm_key: AutomaticActions | ||
| ddm_value: | ||
| Download: AlwaysOn | ||
|
Comment on lines
+45
to
+49
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potential key mismatch: this rule uses
InstallSecurityUpdatesunderAutomaticActions, but an existing DDM software update rule (system_settings_security_update_install.yaml) usesInstallSecurityUpdate(singular). Since these keys must match Apple’sSoftwareUpdateSettingsschema exactly, please verify the correct key name and align usage across rules to avoid generating a non-functional DDM declaration.