From b0a0004a85387a4f7520a688f6d2a9826d8e68fb Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Thu, 10 Feb 2022 13:47:10 -0500 Subject: [PATCH] output --- usr/libexec/security-misc/remove-system.map | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/libexec/security-misc/remove-system.map b/usr/libexec/security-misc/remove-system.map index 30fd790..d722e15 100755 --- a/usr/libexec/security-misc/remove-system.map +++ b/usr/libexec/security-misc/remove-system.map @@ -20,7 +20,7 @@ for filename in ${system_map_location} ; do done if [ "$counter" -ge "1" ]; then - echo "Deleting system.map files..." + echo "INFO: Deleting system.map files..." fi ## Removes the System.map files as they are only used for debugging or malware. @@ -29,14 +29,14 @@ for filename in ${system_map_location} ; do if [ -w "${filename}" ]; then ## 'shred' with '--verbose' is too chatty. (7 lines) shred --force --zero -u "${filename}" - echo "removed '${filename}'" + echo "INFO: removed '${filename}'" else - echo "Cannot delete '${filename}' - read-only. For details, see: https://www.kicksecure.com/wiki/security-misc#system_map" + echo "NOTE: Cannot delete '${filename}' - read-only. For details, see: https://www.kicksecure.com/wiki/security-misc#system_map" exit 0 fi fi done if [ "$counter" -ge "1" ]; then - echo "Done. Success." + echo "INFO: Done. Success." fi