Create remove-system.map

This commit is contained in:
madaidan 2019-06-25 19:20:27 +00:00 committed by GitHub
parent 01c839c815
commit 382e336f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,6 @@
#!/bin/bash
# Removes the System.map files as they are only used for debugging or malware.
if [ -f /boot/System.map-* ]; then
rm /boot/System.map-*
fi