Stacked additional rm commands in mac-wipe.sh to

ensure files may be deleted if shred dependency is not
installed or fails to work. Passes local sanity test.
This commit is contained in:
nicholas 2023-10-13 13:51:49 +02:00
parent 09d2f8c087
commit 40362dfccf
1 changed files with 4 additions and 4 deletions

View File

@ -39,18 +39,18 @@ GASLIGHT
# Kills process responsible for manipulating (and protecting) the /tmp/ file instance
killall -9 gltertf
# shredding /tmp/tertf
# shredding /tmp/tertf, rm for good measure
if [ -f "$tmp_file" ];then
echo "Files found within /tmp/. Let's get to it."
shred -v -u "$tmp_file"
shred -v -u "$tmp_file" || rm -f "$tmp_file"
else
echo "No file found within /tmp/tertf. No shredding to be done there."
fi
# shredding /etc/tertf
# shredding /etc/tertf, , rm for good measure
if [ -f "$etc_file" ]; then
echo "Files found in /etc/. Let's get to it."
shred -v -u "$etc_file" #-v provides verbose output to ease my anxious mind and -u deletes files after they are overwritten
shred -v -u "$etc_file" || rm -f "$tmp_file"
else
echo "No file found within /etc/tertf. No shredding to be done there."
fi