chiark
/
gitweb
/
~mdw
/
zones
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
certs/distorted-ca.cert: Use the cert that didn't expire two years ago.
[zones]
/
fetch-sshfp
1
#! /bin/sh
2
3
while read host; do
4
{ ssh $host "ssh-keygen -r$host" >$host.sshfp.new
5
mv $host.sshfp.new $host.sshfp; }&
6
done <<END
7
ibanez
8
radius
9
roadstar
10
jem
11
artist
12
fender
13
precision
14
telecaster
15
stratocaster
16
jazz
17
gibson
18
vampire
19
terror
20
crybaby
21
orange
22
END
23
24
wait