Merge remote-tracking branch 'origin/master'

This commit is contained in:
Patrick Schleizer 2019-12-07 11:34:42 -05:00
commit 373e8733d3
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -6,7 +6,7 @@
shopt -s nullglob
counter=0
for filename in /boot/System.map-* ; do
for filename in /boot/System.map* ; do
counter=$(( counter + 1 ))
done
@ -15,7 +15,7 @@ if [ "$counter" -ge "1" ]; then
fi
## Removes the System.map files as they are only used for debugging or malware.
for filename in /boot/System.map-* ; do
for filename in /boot/System.map* ; do
if [ -f "${filename}" ]; then
rm --verbose --force "${filename}"
fi