From: Mike Frysinger Date: Sat, 17 Feb 2018 02:09:22 +0000 (-0500) Subject: check-services: ignore icon caches & memfd X-Git-Url: https://git.wh0rd.org/?p=home.git;a=commitdiff_plain;h=b24b65a3e59dfe2ac4d0b225e5e58752bf7db129 check-services: ignore icon caches & memfd --- diff --git a/.bin/gentoo-check-services b/.bin/gentoo-check-services index 3ef7dba..4b69880 100755 --- a/.bin/gentoo-check-services +++ b/.bin/gentoo-check-services @@ -17,6 +17,10 @@ import time IGNORE_PATHS = set(( '/dev/zero', '/etc/ld.so.cache', + '/usr/share/icons/Adwaita/icon-theme.cache', + '/usr/share/icons/gnome/icon-theme.cache', + '/usr/share/icons/hicolor/icon-theme.cache', + '/usr/share/mime/mime.cache', )) @@ -43,6 +47,7 @@ def find_svcs(): # Handle paths with spaces. path = path.lstrip().rsplit(' ', 2)[0] if (path == '/[aio]' or + path.startswith('/memfd:') or path.startswith('/SYSV') or path.startswith('/dev/shm/') or path.startswith('/tmp/')):