diff options
Diffstat (limited to 'nagios-check-libs')
-rwxr-xr-x | nagios-check-libs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nagios-check-libs b/nagios-check-libs index b041144..9aa2008 100755 --- a/nagios-check-libs +++ b/nagios-check-libs @@ -117,6 +117,7 @@ for my $line (@lsof) { next if $path =~ m#^/proc/#; next if $path =~ m#^/var/tmp/#; next if $path =~ m#^/SYS#; + next if $path =~ m#^/drm$#; # xserver stuff next if $path =~ m#^/dev/zero#; next if ($INVSERVER && ($process eq 'init') && ($pid == 1) && ($user eq 'root')); #$processes{$user}->{$process} = [] unless defined $processes{$user}->{$process}; |