2020-10-08 15:25:06 +00:00
|
|
|
#!/bin/bash
|
|
|
|
rm accounts/news@*/outbox/*
|
|
|
|
rm accounts/news@*/postcache/*
|
|
|
|
rm accounts/news@*/outbox.index
|
2020-10-19 21:23:18 +00:00
|
|
|
if [ -d accounts/newsmirror ]; then
|
|
|
|
rm -rf accounts/newsmirror
|
|
|
|
fi
|
2020-10-09 10:39:13 +00:00
|
|
|
if [ -f accounts/.newswirestate.json ]; then
|
|
|
|
rm accounts/.newswirestate.json
|
2020-10-09 10:38:29 +00:00
|
|
|
fi
|
2020-10-10 19:49:12 +00:00
|
|
|
if [ -f accounts/.currentnewswire.json ]; then
|
|
|
|
rm accounts/.currentnewswire.json
|
|
|
|
fi
|