diff options
| author | Erisa A <erisa@tailscale.com> | 2025-02-08 14:45:41 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-08 14:45:41 +0000 |
| commit | 532e38bdc82cd61d0e72cdca89093fd92baa1db2 (patch) | |
| tree | 1e65178908c6716775dd028047c75b97af009893 /scripts | |
| parent | 7b3e5b5df36276567109f6a924d2866d0f85e503 (diff) | |
| download | tailscale-532e38bdc82cd61d0e72cdca89093fd92baa1db2.tar.xz tailscale-532e38bdc82cd61d0e72cdca89093fd92baa1db2.zip | |
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 <erisa@tailscale.com>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/installer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
