mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
13 lines
368 B
YAML
13 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;
|
|
|
|
```
|