From 29f30d9eabbf1144888bc93bbfe31f6ff6a3f96c Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 3 Jan 2026 23:58:49 +0200 Subject: Update content for gemtext --- gemfeed/atom.xml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'gemfeed/atom.xml') diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml index f2bacd29..035bfbc6 100644 --- a/gemfeed/atom.xml +++ b/gemfeed/atom.xml @@ -1,6 +1,6 @@ - 2026-01-01T12:26:21+02:00 + 2026-01-03T23:57:42+02:00 foo.zone feed To be in the .zone! @@ -7428,6 +7428,8 @@ paul@f0:~ % doas service devd restart
Next, we create the CARP control script that will restart stunnel when the CARP state changes:

+Update: Fixed the script at Sat 3 Jan 23:55:11 EET 2026 - changed $1 to $2 because devd passes $subsystem $type, so the state is in the second argument.
+
#!/bin/sh # CARP state change control script -case "$1" in +case "$2" in MASTER) logger "CARP state changed to MASTER, starting services" ;; @@ -7444,7 +7446,7 @@ http://www.gnu.org/software/src-highlite --> logger "CARP state changed to BACKUP, stopping services" ;; *) - logger "CARP state changed to $1 (unhandled)" + logger "CARP state changed to $2 (unhandled)" ;; esac EOF @@ -7754,6 +7756,8 @@ Starting stunnel.
This approach ensures clients can only connect to the active server, eliminating stale handles from the inactive server:

+Update: Fixed the script at Sat 3 Jan 23:55:11 EET 2026 - changed $1 to $2 because devd passes $subsystem $type, so the state is in the second argument.
+