From 43ad9c6533c27955d4352411fc831d9c588431c5 Mon Sep 17 00:00:00 2001 From: Echo Nar Date: Thu, 24 Oct 2024 23:43:11 -0500 Subject: [PATCH] tailscale: Add env to exec line in run script Adds conf sourced variable that allows tailscaled environment variables to be set adjusting functionality. --- srcpkgs/tailscale/files/tailscaled/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tailscale/files/tailscaled/run b/srcpkgs/tailscale/files/tailscaled/run index ee512f66d3eded..f66459516fe08b 100644 --- a/srcpkgs/tailscale/files/tailscaled/run +++ b/srcpkgs/tailscale/files/tailscaled/run @@ -3,7 +3,7 @@ [ -r conf ] && . ./conf exec 2>&1 -exec /usr/bin/tailscaled \ +exec env ${ENV_VARS} /usr/bin/tailscaled \ --state=/var/lib/tailscale/tailscaled.state \ --socket=/var/run/tailscale/tailscaled.sock \ --port "${PORT:-41641}" \