mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Format SQL query for readability (#37753)
Sorry for having so many PRs on this one! Thank you again for correcting my original formatting. I was looking over this more and wanted to improve how it appears on the site for better readability.
This commit is contained in:
parent
d94bcb81b5
commit
aa56063553
1 changed files with 9 additions and 3 deletions
|
|
@ -2149,9 +2149,15 @@ kind: policy
|
|||
spec:
|
||||
name: CrowdStrike Falcon System Extension enabled and activated (macOS)
|
||||
query: |
|
||||
SELECT 1
|
||||
WHERE (EXISTS (SELECT 1 FROM system_extensions WHERE identifier = 'com.crowdstrike.falcon.Agent'))
|
||||
AND EXISTS (SELECT 1 FROM system_extensions WHERE state = 'activated_enabled');
|
||||
SELECT 1
|
||||
WHERE EXISTS (
|
||||
SELECT 1 FROM system_extensions
|
||||
WHERE identifier = 'com.crowdstrike.falcon.Agent'
|
||||
)
|
||||
AND EXISTS (
|
||||
SELECT 1 FROM system_extensions
|
||||
WHERE state = 'activated_enabled'
|
||||
);
|
||||
bash: systemextensionsctl list | grep 'falcon' | grep 'activated enabled'
|
||||
description: Checks to make sure that the CrowdStrike System Extension is enabled and activated on macOS devices.
|
||||
resolution: "To activate the CrowdStrike Falcon System Extension, on the failing device, run the following command in the Terminal app: sudo /Applications/Falcon.app/Contents/Resources/falconctl load"
|
||||
|
|
|
|||
Loading…
Reference in a new issue