dirty-helpers/saubermann-rpm

29 lines
811 B
Text
Raw Normal View History

2016-09-11 17:14:18 +02:00
#!/bin/sh
# check for things not installed via RPM and other junk
saubermann-common
2016-09-11 17:14:18 +02:00
echo "== should be installed via RPM or pip install --user:"
2016-09-11 18:28:48 +02:00
for site_packages in /usr/lib/python2.7/site-packages/; do
2016-09-11 17:14:18 +02:00
rpm -qf $site_packages/*.egg-info 2>&1 | grep "not owned"
done
echo "== /usr/local"
find /usr/local/ -type f \
-and -not -name mimeinfo.cache \
-and -not -name defaults.list \
-print0 | xargs -0 rpm -qf 2>&1 | grep "not owned"
echo "== /usr/bin etc."
find /usr/bin /usr/sbin /usr/lib -type f \
\( \
-path '/usr/lib/modules/*/modules.*' -prune \
-or -path '*/__pycache__/*.py?' -prune \
-or -print0 \
\) | xargs -0 rpm -qf 2>&1 | grep "not owned"
echo "== *.rpmnew etc."
find /etc/ /usr/ \
-path '/usr/share/eclipse/dropins' -prune \
-or -name "*.rpm*" -and -not -name "*.rpm"