Skip to content

Commit

Permalink
Update linux-device-health.policies.yml (#22516)
Browse files Browse the repository at this point in the history
See #22498
  • Loading branch information
rachaelshaw authored Oct 1, 2024
1 parent a9a9e92 commit 00d31e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions it-and-security/lib/linux-device-health.policies.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- name: Linux - Enable disk encryption
query: SELECT 1 FROM disk_encryption WHERE encrypted=1 AND name LIKE '/dev/dm-1';
query: SELECT 1 FROM mounts m, disk_encryption d WHERE m.device_alias = d.name AND d.encrypted = 1 AND m.path = '/';
critical: false
description: This policy checks if disk encryption is enabled.
resolution: As an IT admin, deploy an image that includes disk encryption.
platform: linux
platform: linux

0 comments on commit 00d31e8

Please sign in to comment.