mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
On the "New policy" page, update default policy (#3192)
- Update default policy from "Gatekeeper enabled" to "Is osquery running?"
This commit is contained in:
parent
b9a408704e
commit
9e095abddb
1 changed files with 3 additions and 3 deletions
|
|
@ -81,9 +81,9 @@ export const DEFAULT_QUERY = {
|
|||
|
||||
export const DEFAULT_POLICY = {
|
||||
id: 1,
|
||||
name: "Gatekeeper enabled",
|
||||
query: "SELECT 1 FROM gatekeeper WHERE assessments_enabled = 1;",
|
||||
description: "Checks if gatekeeper is enabled on macOS devices",
|
||||
name: "Is osquery running?",
|
||||
query: "SELECT 1 FROM osquery_info WHERE start_time > 1;",
|
||||
description: "Checks if the osquery process has started on the host.",
|
||||
author_id: 42,
|
||||
author_name: "John",
|
||||
author_email: "john@example.com",
|
||||
|
|
|
|||
Loading…
Reference in a new issue