mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-08 00:26:52 +00:00
scripts/installer.sh: add FreeBSD 14 (#14925)
Fixes #14745 Also adds --yes to pkg to match other package managers Signed-off-by: Erisa A <erisa@tailscale.com>
This commit is contained in:
parent
d08f830d50
commit
431216017b
@ -390,7 +390,8 @@ main() {
|
|||||||
;;
|
;;
|
||||||
freebsd)
|
freebsd)
|
||||||
if [ "$VERSION" != "12" ] && \
|
if [ "$VERSION" != "12" ] && \
|
||||||
[ "$VERSION" != "13" ]
|
[ "$VERSION" != "13" ] && \
|
||||||
|
[ "$VERSION" != "14" ]
|
||||||
then
|
then
|
||||||
OS_UNSUPPORTED=1
|
OS_UNSUPPORTED=1
|
||||||
fi
|
fi
|
||||||
@ -572,7 +573,7 @@ main() {
|
|||||||
;;
|
;;
|
||||||
pkg)
|
pkg)
|
||||||
set -x
|
set -x
|
||||||
$SUDO pkg install tailscale
|
$SUDO pkg install tailscale --yes
|
||||||
$SUDO service tailscaled enable
|
$SUDO service tailscaled enable
|
||||||
$SUDO service tailscaled start
|
$SUDO service tailscaled start
|
||||||
set +x
|
set +x
|
||||||
|
Loading…
x
Reference in New Issue
Block a user