Compare commits
No commits in common. "main" and "0.1.1" have entirely different histories.
3 changed files with 47 additions and 78 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -12,18 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
## [0.2.0] - 2022-04-22
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- Test condition when there are no errors
|
|
||||||
- Log unjoinable instances
|
|
||||||
- A message when instance can be accessed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- Silence curl's output
|
|
||||||
|
|
||||||
## [0.1.1] - 2021-08-29
|
## [0.1.1] - 2021-08-29
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -44,11 +44,11 @@ and date of expired certificate, default: `1210000`, 2w
|
||||||
- `INSTANCE_LAST_CHANCE_TIMEOUT`, integer, timeout in seconds to connect to an
|
- `INSTANCE_LAST_CHANCE_TIMEOUT`, integer, timeout in seconds to connect to an
|
||||||
instance that was previously not accessible, default: `30`
|
instance that was previously not accessible, default: `30`
|
||||||
- `MEDIA_REMOVE_DAYS`, integer, how old in days media attachments have to be
|
- `MEDIA_REMOVE_DAYS`, integer, how old in days media attachments have to be
|
||||||
before getting removed, default: `7`
|
before getting removed
|
||||||
- `CARDS_REMOVE_DAYS`, integer, how old in days cards previews have to be
|
- `CARDS_REMOVE_DAYS`, integer, how old in days cards previews have to be
|
||||||
before getting removed, default: `15`
|
before getting removed
|
||||||
- `STATUSES_REMOVE_DAYS`, integer, how old in days unreferenced statuses have
|
- `STATUSES_REMOVE_DAYS`, integer, how old in days unreferenced statuses have
|
||||||
to be before getting removed, default: `30`
|
to be before getting removed
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
|
23
tootpaste.sh
23
tootpaste.sh
|
@ -40,7 +40,6 @@ accounts_cull() {
|
||||||
|
|
||||||
# Remove instances that have an expired certificate from more than
|
# Remove instances that have an expired certificate from more than
|
||||||
# TLS_EXPIRED_MAX_SEC
|
# TLS_EXPIRED_MAX_SEC
|
||||||
if grep -q 'certificate has expired' "$CULL_LOG"; then
|
|
||||||
grep 'certificate has expired' "$CULL_LOG" \
|
grep 'certificate has expired' "$CULL_LOG" \
|
||||||
| awk '{print $NF}' \
|
| awk '{print $NF}' \
|
||||||
| cut -d'/' -f3 \
|
| cut -d'/' -f3 \
|
||||||
|
@ -74,34 +73,19 @@ accounts_cull() {
|
||||||
"$instance"
|
"$instance"
|
||||||
fi
|
fi
|
||||||
done < "$TLS_EXPIRED_LOG"
|
done < "$TLS_EXPIRED_LOG"
|
||||||
fi
|
|
||||||
|
|
||||||
# Log other instances errors, then if they were already in the log, purge them
|
# Log other instances errors, then if they were already in the log, purge
|
||||||
if grep -q 'https' "$CULL_LOG"; then
|
# them
|
||||||
grep \
|
grep \
|
||||||
-e 'certificate verify failed' \
|
-e 'certificate verify failed' \
|
||||||
-e 'timed out' \
|
-e 'timed out' \
|
||||||
-e 'sslv3 alert handshake failure' \
|
-e 'sslv3 alert handshake failure' \
|
||||||
-e 'TooManyRedirectsError' \
|
-e 'TooManyRedirectsError' \
|
||||||
-e 'EndlessRedirectError' \
|
|
||||||
-e 'HostValidationError' \
|
|
||||||
"$CULL_LOG" \
|
"$CULL_LOG" \
|
||||||
| awk '{print $NF}' \
|
| awk '{print $NF}' \
|
||||||
| cut -d'/' -f3 \
|
| cut -d'/' -f3 \
|
||||||
| sort -u \
|
| sort -u \
|
||||||
> "$OTHER_ERRORS_LOG"
|
> "$OTHER_ERRORS_LOG"
|
||||||
fi
|
|
||||||
|
|
||||||
# Log unjoinable instances, then if they were already in the log, purge them
|
|
||||||
if grep -q 'not available during the check:' "$CULL_LOG"; then
|
|
||||||
grep \
|
|
||||||
-A 9999 \
|
|
||||||
'not available during the check:' \
|
|
||||||
"$CULL_LOG" \
|
|
||||||
| tail -n +2 \
|
|
||||||
| sed -E 's/\s+//' \
|
|
||||||
> "$OTHER_ERRORS_LOG"
|
|
||||||
fi
|
|
||||||
|
|
||||||
test -f $PREV_ERRORS_LOG || touch $PREV_ERRORS_LOG
|
test -f $PREV_ERRORS_LOG || touch $PREV_ERRORS_LOG
|
||||||
while read -r instance; do
|
while read -r instance; do
|
||||||
|
@ -109,7 +93,6 @@ accounts_cull() {
|
||||||
error=false
|
error=false
|
||||||
echo "${instance} was already in error last time your ran tootpaste, trying access..."
|
echo "${instance} was already in error last time your ran tootpaste, trying access..."
|
||||||
curl \
|
curl \
|
||||||
--output /dev/null \
|
|
||||||
--silent \
|
--silent \
|
||||||
--show-error \
|
--show-error \
|
||||||
--max-time "$INSTANCE_LAST_CHANCE_TIMEOUT" \
|
--max-time "$INSTANCE_LAST_CHANCE_TIMEOUT" \
|
||||||
|
@ -126,8 +109,6 @@ accounts_cull() {
|
||||||
|| $TOOTCTL domains purge \
|
|| $TOOTCTL domains purge \
|
||||||
--concurrency "$DB_POOL" \
|
--concurrency "$DB_POOL" \
|
||||||
"$instance"
|
"$instance"
|
||||||
else
|
|
||||||
echo "${instance} can now be accessed, not purging!"
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done < "$OTHER_ERRORS_LOG"
|
done < "$OTHER_ERRORS_LOG"
|
||||||
|
|
Loading…
Add table
Reference in a new issue