mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
14 lines
368 B
YAML
14 lines
368 B
YAML
name: managed_policies
|
|
columns:
|
|
- name: username
|
|
description: policy only applies to the listed user. Blank if global.
|
|
examples: >-
|
|
Check if critical software update installation is enabled via a profile (1 =
|
|
enabled)
|
|
|
|
```
|
|
|
|
SELECT name, value FROM managed_policies WHERE domain='com.apple.SoftwareUpdate' AND name='CriticalUpdateInstall' LIMIT 1;
|
|
|
|
```
|