sum updoots

This commit is contained in:
2026-05-23 08:13:40 -06:00
parent e22c171c8e
commit eba068f3c9
2 changed files with 10 additions and 62 deletions
+10 -5
View File
@@ -29,11 +29,16 @@ reset() {
find . -type f \( -path ".git" -o -path "keystore" -o -path "archives" \) -prune \( -name "*.sha512" -o -name "checksums*" -o -name "private_*" -o -name ".*" -o -name "*.sig" -o -name "*.7z" -o -name "anonymous_signer" \) -print -exec shred -uz {} \;
checkcode $?
printf "nuking errant priv key files..."
shred -uz private_*
checkcode $?
shred -uz attribution_passphrase_*
checkcode $?
if [ -f private_* ]; then
printf "nuking errant priv key files..."
shred -uz private_*
checkcode $?
fi
if [ -f attribution_passphrase_* ]; then
printf "nuking errant attribution passphrase files"
shred -uz attribution_passphrase_*
checkcode $?
fi
echo "autoshredding out..."
srm -r -z -l -l "$out_dir"