annotate contrib/whoisd/whoisd-cached.sh @ 1260:f5ad11b817f1 draft default tip master

switched to using the git subdomain for git repo url
author epoch <epoch@hack.thebackupbox.net>
date Sat, 09 Oct 2021 09:21:28 +0000
parents a461bd595421
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1207
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
1 #!/bin/sh
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
2 cd /var/db/resdb
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
3 commit=$(git log -1 | head -n1 | tr -cd 'a-f0-9')
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
4 query=$(head -n1 | tr -cd 'a-zA-Z0-9.:_-')
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
5 if ! cat "/var/cache/whois/${commit}-${query}" 2>/dev/null;then
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
6 printf "%s\n" "${query}" | /var/db/resdb/contrib/whoisd/whoisd.pl | tee "/var/cache/whois/${commit}-${query}"
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
7 fi