Show libs with bad permissions
This commit is contained in:
parent
d8c4860f90
commit
d35e9be67d
|
@ -7,6 +7,7 @@ if [ -d "/lib" ];then
|
|||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /lib -type f -perm /022 -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
@ -17,6 +18,7 @@ if [ -d "/lib64" ];then
|
|||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /lib64 -type f -perm /022 -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
@ -27,6 +29,7 @@ if [ -d "/usr/lib" ];then
|
|||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /usr/lib -type f -perm /022 -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
@ -37,6 +40,7 @@ if [ -d "/usr/lib64" ];then
|
|||
if [ $COUNT -eq 0 ];then
|
||||
:
|
||||
else
|
||||
find -L /usr/lib64 -type f -perm /022 -exec ls -l {} \;
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue