Compare commits

...

2 Commits

Author SHA1 Message Date
Carlos Polop
c2a22ad0ac Merge b3eefad3fe into cf947f01c7 2022-03-14 20:31:36 +00:00
carlospolop
b3eefad3fe check /opt 2022-03-14 16:30:44 -04:00

View File

@@ -257,12 +257,18 @@ if [ "$broken_links" ] || [ "$DEBUG" ]; then
echo ""
fi
if [ "$MACPEAS" ]; then
print_2title "Unsigned Applications"
macosNotSigned /System/Applications
fi
##-- IF) Unexpected in /opt
if [ "$(ls /opt 2>/dev/null)" ]; then
print_2title "Unexpected in /opt (usually empty)"
ls -la /opt
echo ""
fi
##-- IF) Unexpected folders in /
print_2title "Unexpected in root"
if [ "$MACPEAS" ]; then