From 9bbae903fe5ee58d4a22dfeab51cbb179b8cfb14 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sat, 15 Feb 2020 05:29:48 -0500 Subject: [PATCH] remove-system.map: lower verbosity output --- usr/lib/security-misc/remove-system.map | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr/lib/security-misc/remove-system.map b/usr/lib/security-misc/remove-system.map index 7e7f787..72ce407 100755 --- a/usr/lib/security-misc/remove-system.map +++ b/usr/lib/security-misc/remove-system.map @@ -26,7 +26,9 @@ fi ## Removes the System.map files as they are only used for debugging or malware. for filename in ${system_map_location} ; do if [ -f "${filename}" ]; then - shred --verbose --force --zero -u "${filename}" + ## 'shred' with '--verbose' is too chatty. (7 lines) + shred --force --zero -u "${filename}" + echo "removed '${filename}'" fi done