Show non-compliant library files
This commit is contained in:
parent
676fb374e2
commit
45e70c80f2
|
@ -2,41 +2,45 @@
|
|||
|
||||
if [ -d "/lib" ];then
|
||||
|
||||
COUNT=$(find -L /lib \! -user root -exec ls -l {} \; | grep -v '> /dev/null' | wc -l)
|
||||
COUNT=$(find -L /lib \! -user root -exec ls -l {} \; | grep -v '> /dev/null' | wc -l)
|
||||
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /lib \! -user root -exec ls -l {} \; | grep -v '> /dev/null'
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [ -d "/lib64" ];then
|
||||
|
||||
COUNT=$(find -L /lib64 \! -user root -exec ls -l {} \; |wc -l)
|
||||
COUNT=$(find -L /lib64 \! -user root -exec ls -l {} \; |wc -l)
|
||||
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /lib64 \! -user root -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [ -d "/usr/lib" ];then
|
||||
|
||||
COUNT=$(find -L /usr/lib \! -user root -exec ls -l {} \; |wc -l)
|
||||
COUNT=$(find -L /usr/lib \! -user root -exec ls -l {} \; |wc -l)
|
||||
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /usr/lib \! -user root -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [ -d "/usr/lib64" ];then
|
||||
|
||||
COUNT=$(find -L /usr/lib64 \! -user root -exec ls -l {} \; |wc -l)
|
||||
COUNT=$(find -L /usr/lib64 \! -user root -exec ls -l {} \; |wc -l)
|
||||
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /usr/lib64 \! -user root -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue