Add exceptions for terraform, hugo, macOS updates

This commit is contained in:
Thomas Stromberg 2022-11-08 14:32:38 -05:00
parent 748be4c251
commit c9605d1c98
Failed to extract signature
7 changed files with 9 additions and 0 deletions

View File

@ -97,6 +97,7 @@ WHERE
AND NOT name IN (
'chrome',
'com.apple.MobileSoftwareUpdate.UpdateBrainService',
'com.apple.NRD.UpdateBrainService',
'containerd',
'cargo',
'esbuild',

View File

@ -46,6 +46,7 @@ WHERE
AND dirname NOT LIKE '/usr/local/%libexec'
and dirname NOT LIKE '/usr/local/Cellar/%'
AND dirname NOT LIKE '/usr/lib/%'
AND dirname NOT LIKE '%/.terraform/providers/%'
AND dirname NOT LIKE '/usr/lib64/%'
AND dirname NOT LIKE '/tmp/%/bin'
AND dirname NOT LIKE '/usr/local/go/pkg/tool/%'

View File

@ -137,6 +137,7 @@ WHERE
AND dir NOT LIKE '/private/tmp/PKInstallSandbox.%/Scripts/com.microsoft.OneDrive.%'
AND dir NOT LIKE '/private/var/db/com.apple.xpc.roleaccountd.staging/%.xpc/Contents/MacOS'
AND dir NOT LIKE '/private/var/folders/%/bin'
AND dir NOT LIKE '%/.terraform/providers/%'
AND dir NOT LIKE '/private/var/folders/%/Contents/%'
AND dir NOT LIKE '/private/var/folders/%/d/Wrapper/%.app'
AND dir NOT LIKE '/private/var/folders/%/go-build%'

View File

@ -58,6 +58,7 @@ WHERE
AND dirname NOT LIKE '/nix/store/%'
AND dirname NOT LIKE '/opt/%'
AND dirname NOT LIKE '/snap/%'
AND dirname NOT LIKE '%/.terraform/providers/%'
AND dirname NOT LIKE '/tmp/%/bin'
AND dirname NOT LIKE '/tmp/go-build%'
AND dirname NOT LIKE '/usr/lib/%'

View File

@ -108,6 +108,7 @@ WHERE
'~/Library/',
'~/.local/',
'~/projects/',
'~/git/',
'~/src/',
'~/.tflint.d/',
'~/.vscode/',
@ -131,6 +132,7 @@ WHERE
AND dir NOT LIKE '/private/var/folders/%/d/Wrapper/%.app'
AND dir NOT LIKE '/private/var/folders/%/go-build%'
AND dir NOT LIKE '/private/var/folders/%/GoLand'
AND dir NOT LIKE '%/.terraform/providers/%'
AND dir NOT LIKE '/Volumes/com.getdropbox.dropbox-%'
AND homedir NOT LIKE '~/Library/Caches/ms-playwright/%'
AND homedir NOT LIKE '~/%/node_modules/.pnpm/esbuild-%/node_modules/esbuild-darwin-arm64/bin'

View File

@ -43,6 +43,7 @@ WHERE
'fleet_backend',
'fsdaemon',
'GoogleSoftwareUpdateAgent',
'com.apple.NRD.UpdateBrainService',
'gopls',
'grype',
'java',

View File

@ -132,7 +132,9 @@ WHERE
)
AND NOT p.cmdline LIKE '%/Library/Apple/System/Library/InstallerSandboxes%'
AND NOT p.cmdline LIKE '%gcloud config config-helper%'
AND NOT p.cmdline LIKE '%hugo/hugo server%'
AND NOT pp.cmdline LIKE '/Applications/Warp.app/%'
AND NOT pp.cmdline = 'npm run start'
AND NOT pp.cmdline LIKE '%brew.rb%'
AND NOT pp.cmdline LIKE '%/Homebrew/build.rb%'
AND NOT pp.cmdline LIKE '%Code Helper%'