From 431216017b465fbb6517a967b6c046293238f61a Mon Sep 17 00:00:00 2001 From: Erisa A Date: Thu, 6 Feb 2025 16:32:51 +0000 Subject: [PATCH] scripts/installer.sh: add FreeBSD 14 (#14925) Fixes #14745 Also adds --yes to pkg to match other package managers Signed-off-by: Erisa A --- scripts/installer.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index bdd425539..e74ce7886 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -390,7 +390,8 @@ main() { ;; freebsd) if [ "$VERSION" != "12" ] && \ - [ "$VERSION" != "13" ] + [ "$VERSION" != "13" ] && \ + [ "$VERSION" != "14" ] then OS_UNSUPPORTED=1 fi @@ -572,7 +573,7 @@ main() { ;; pkg) set -x - $SUDO pkg install tailscale + $SUDO pkg install tailscale --yes $SUDO service tailscaled enable $SUDO service tailscaled start set +x