blob: a9d033eb7e97251d5b710d5ea3ced9e4195692da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Time-stamp: <2025-08-25 08h15 UTC>
# Updated certs to 99 years and post-post Antenna hook
I realised that my certs were slightly misconfigured which was giving gnutls-cli a hard time, they should now be right and valid for 99 years. I took the opportunity to throw in
```
FEED_URL='gemini%3A%2F%2Fl-3.space%2Fatom.xml'
HOST='warmedal.se'
PORT=1965
REQUEST="gemini://$HOST/~antenna/submit?$FEED_URL"
printf '%s\r\n' "$REQUEST" | \
openssl s_client -quiet -connect "$HOST:$PORT" -ign_eof 2>/dev/null || {
echo 'Antenna submission failed' >&2
exit 1
}
```
in the git post hook, let's see that this works for this log :)
|