Compare commits

...

2 Commits

Author SHA1 Message Date
nervuri b32b15b5b7
add script for pruning old certificates 2021-06-24 16:17:02 +03:00
nervuri d536aa9003
add spacing to stderr output 2021-06-24 16:13:47 +03:00
3 changed files with 37 additions and 0 deletions

View File

@ -84,6 +84,7 @@ while read -r host; do
cert=$(fetch_cert "$host_and_port" 'timeout 10')
if [ -z "$cert" ]; then
>&2 echo # empty line
>&2 echo "$host_and_port - connection failed"
fi
@ -100,6 +101,7 @@ while read -r host; do
cert_via_tor=$(fetch_cert "$host_and_port" 'timeout 25' 'torsocks')
if [ -z "$cert_via_tor" ]; then
[ -n "$cert" ] && >&2 echo # output empty line to stderr if cert was downloaded without Tor
>&2 echo "$host_and_port - Tor connection failed"
elif [ -n "$cert" ] && [ "$cert" != "$cert_via_tor" ]; then
>&2 echo "$host_and_port - Tor VERIFICATION FAILED (certs don't match)!!!"

View File

@ -19,6 +19,9 @@ else
./get-certs.sh
fi
echo '=== prune old certs ==='
./prune-old-certs.sh
echo '=== cert details ==='
./cert-details.sh

32
prune-old-certs.sh Executable file
View File

@ -0,0 +1,32 @@
#!/bin/sh
# Remove certificates of hosts that both:
# - have been down for more than 30 days;
# - are no longer in the hosts file.
set -o errexit # (-e) exit immediately if any command has a non-zero exit status
set -o nounset # (-u) don't accept undefined variables
#set -o xtrace # for debugging
# Go where this script is.
cd "$(dirname "$0")" || exit
# Go through certs of hosts that have been down for more than 30 days.
find certs -mtime +30 -type f -execdir sh -c '
cert_file="$1"
host=$(expr "$cert_file" : "^\.\/\(.*\)\:[0-9]*\.pem$")
port=$(expr "$cert_file" : "^\.\/.*\:\([0-9]*\)\.pem$")
# Append port if not default
if [ "$port" != 1965 ]; then
host="$host:$port"
fi
# If it is not in the hosts file, delete it.
if ! grep -xq "$host" ../hosts; then
echo "Pruning $host"
rm "$cert_file"
fi
' sh {} \;
echo OK