Skip to content

Commit a5baa01

Browse files
stevenc99Steven Chamberlain
authored andcommitted
feat(#25587): add CephFS type to skip_nfs flag
1 parent 41fa165 commit a5baa01

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/main/public/controllers/management/components/management/configuration/integrity-monitoring/integrity-monitoring-general.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const mainSettings = [
5959
when: 'manager'
6060
},
6161
{ field: 'scan_on_start', label: 'Scan on start' },
62-
{ field: 'skip_nfs', label: 'Skip scan on CIFS/NFS mounts' },
62+
{ field: 'skip_nfs', label: 'Skip scan on CephFS/CIFS/NFS mounts' },
6363
{ field: 'skip_dev', label: 'Skip scan of /dev directory' },
6464
{ field: 'skip_sys', label: 'Skip scan of /sys directory' },
6565
{ field: 'skip_proc', label: 'Skip scan of /proc directory' },

plugins/main/public/controllers/management/components/management/configuration/policy-monitoring/policy-monitoring-general.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const allSettings = [
3838
{ field: 'check_winapps', label: 'Check Windows apps' },
3939
{ field: 'check_winaudit', label: 'Check Windows audit' },
4040
{ field: 'check_winmalware', label: 'Check Windows malware' },
41-
{ field: 'skip_nfs', label: 'Skip scan on CIFS/NFS mounts' },
41+
{ field: 'skip_nfs', label: 'Skip scan on CephFS/CIFS/NFS mounts' },
4242
{ field: 'rootkit_files', label: 'Rootkit files database path' },
4343
{ field: 'rootkit_trojans', label: 'Rootkit trojans database path' },
4444
{ field: 'windows_audit', label: 'Windows audit definition file path' },

plugins/main/server/lib/reporting/agent-configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const AgentConfiguration = {
9494
rootkit_files: 'Rootkit files database path',
9595
rootkit_trojans: 'Rootkit trojans database path',
9696
scanall: 'Scan the entire system',
97-
skip_nfs: 'Skip scan on CIFS/NFS mounts',
97+
skip_nfs: 'Skip scan on CephFS/CIFS/NFS mounts',
9898
frequency: 'Frequency (in seconds) to run the scan',
9999
check_dev: 'Check /dev path',
100100
check_files: 'Check files',
@@ -246,7 +246,7 @@ export const AgentConfiguration = {
246246
{
247247
disabled: 'Integrity monitoring disabled',
248248
frequency: 'Interval (in seconds) to run the integrity scan',
249-
skip_nfs: 'Skip scan on CIFS/NFS mounts',
249+
skip_nfs: 'Skip scan on CephFS/CIFS/NFS mounts',
250250
scan_on_start: 'Scan on start',
251251
directories: 'Monitored directories',
252252
nodiff: 'No diff directories',

0 commit comments

Comments
 (0)