From 4631c75dad03bbb1381db50406563e72cf00c59a Mon Sep 17 00:00:00 2001 From: Pete Date: Thu, 7 May 2026 00:07:30 -0700 Subject: [PATCH] add update script for FreeBSD Bastille jail deployment --- update-fingerd.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 update-fingerd.sh diff --git a/update-fingerd.sh b/update-fingerd.sh new file mode 100644 index 0000000..ba1058e --- /dev/null +++ b/update-fingerd.sh @@ -0,0 +1,11 @@ +#!/bin/sh +set -e + +bastille cmd finger sh -c ' + cd /usr/local/src/finger && + git pull && + meson compile -C builddir && + meson install -C builddir +' + +bastille cmd finger service fingerd restart