Merge pull request #43 from tstromberg/bwrap-empty

empty environ: add exception for bwrap
This commit is contained in:
Thomas Strömberg 2022-10-29 11:53:46 -04:00 committed by GitHub
commit 0c0a38df44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,10 @@ WHERE -- This time should match the interval
AND p.start_time < (strftime('%s', 'now') - 5)
-- This pattern is common with kthreadd processes
AND p.parent != 2
AND p.path != '/usr/bin/gpg-agent'
AND p.path NOT IN (
'/usr/bin/gpg-agent',
'/usr/bin/bwrap'
)
GROUP BY
p.pid
HAVING