mirror of
https://github.com/srlabs/blue-merle.git
synced 2025-01-09 14:19:36 -05:00
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:
parent
09d2f8c087
commit
40362dfccf
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user