From 086ef19439bf7861ab364f9aba1790a89fcd30e2 Mon Sep 17 00:00:00 2001 From: Keli <104461838+kelivel@users.noreply.github.com> Date: Tue, 27 Feb 2024 09:17:12 -0500 Subject: [PATCH] scripts/installer.sh: auto-start tailscale on Alpine (#11214) On Alpine, we add the tailscale service but fail to call start. This means that tailscale does not start up until the user reboots the machine. Fixes #11161 Signed-off-by: Keli Velazquez --- scripts/installer.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/installer.sh b/scripts/installer.sh index df0b4f8da..2bbe40569 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -528,6 +528,7 @@ main() { set -x $SUDO apk add tailscale $SUDO rc-update add tailscale + $SUDO rc-service tailscale start set +x ;; xbps)