mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
32 lines
827 B
Bash
32 lines
827 B
Bash
#!/bin/sh
|
|
|
|
# This software may be freely redistributed under the terms of the GNU
|
|
# public license.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
found=0
|
|
list=`rpm -qa --queryformat "%{NAME}-%{VERSION}.%{ARCH}\n" | grep '^lib' | egrep -v '\-utils\-|\-bin\-|\-tools\-|\-client\-|libreoffice|\-plugin\-'`
|
|
for p in $list
|
|
do
|
|
bin=`rpm -ql $p | egrep '^/bin|^/sbin|^/usr/bin|^/usr/sbin' | grep -v '\-config'`
|
|
if [ "x$bin" != "x" ]; then
|
|
testf=`echo $bin | /usr/bin/file -n -f - 2>/dev/null | grep ELF`
|
|
if [ x"$testf" != "x" ] ; then
|
|
found=1
|
|
echo "$p could be split into a utils package"
|
|
fi
|
|
fi
|
|
done
|
|
|
|
if [ $found = 0 ]; then
|
|
echo "No problems found"
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|
|
|
|
|