From 532e38bdc82cd61d0e72cdca89093fd92baa1db2 Mon Sep 17 00:00:00 2001 From: Erisa A Date: Sat, 8 Feb 2025 14:45:41 +0000 Subject: [PATCH] scripts/installer.sh: fix --yes argument for freebsd (#14958) This argument apparently has to be before the package name Updates #14745 Signed-off-by: Erisa A --- scripts/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index 3b76a7b88..22ba12b6b 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -573,7 +573,7 @@ main() { ;; pkg) set -x - $SUDO pkg install tailscale --yes + $SUDO pkg install --yes tailscale $SUDO service tailscaled enable $SUDO service tailscaled start set +x