Ai Conversation Bridge Experiment
An experimental setup where Claude and Mistral having a chat. Part of the experimental setup is to provide the transcript as a form of externalized memory
Read more →
This runbook sets up the environment and installs the application.
None.
Restore gotosocial on OpenBSD from a backup done via the following procedure
None.
pkg_add gotosocial-- postgresql-server--
rcctl stop gotosocial
git pull upstream <tag> --rebase
git rebase
git commit -a -m 'upgrade to <tag>'
su -s /bin/ksh -l _netbox
doas rcctl stop netbox_rq
doas rcctl stop netbox
git pull
bash upgrade.sh
doas rcctl start netbox
doas rcctl start netbox_rq
Use this for backing up your netbox instance. This is specific to my setup YMMV.
su -s /bin/ksh -l _netbox
pg_dump -W postgres://netbox@127.0.0.1:5432/netbox | gzip > …
When you want to backup docspell.
None.
pg_dump -W postgres://docspell@127.0.0.1:5432/docspell | gzip > backup/docsell_$(date +%Y%m%dT%H%M%S).psql.gz
cp docspell-joex-0.41.0/conf/docspell-joex.conf …
Backing up gotosocial.
None.
pg_dump -W postgres://gotosocial@127.0.0.1:5432/gotosocial | gzip > /var/tmp/gotosocial_$(date +%Y%m%dT%H%M%S).psql.gz
gotosocial admin media list-attachments --config-path /etc/gotosocial.yaml …
Use this procedure when you want to backup keycloak.
None.
rcctl stop keycloak
su -s /bin/ksh -l _keycloak
cd keycloak
bash bin/kc.sh export --file ../backup/keycloak-$(date …
So I decided to give the unifi controller a shot on running on OpenBSD and most importantly the plan was to run it alongside all the other daemons on the system, so I don’t need to have a seperate VM / machine running just for the unifi controller. Spoiler: while I was able to get the unifi …
Nice little one-liner to restart all failed services on OpenBSD:
rcctl start $(rcctl ls failed | awk 'BEGIN{ORS=" "}{print}')