We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36bcfb4 commit b8acd9fCopy full SHA for b8acd9f
src/tailscale/tailscaled-entrypoint.sh
@@ -5,6 +5,11 @@
5
6
set -euxo pipefail
7
8
+# Note: It is not recommended that users copy this setting into other
9
+# environments, the feature is in test and will be formally released in the
10
+# future, debug flags may later be recycled for other purposes leading to
11
+# unexpected behavior.
12
+export TS_DEBUG_FIREWALL_MODE=auto
13
if [[ "$(id -u)" -eq 0 ]]; then
14
mkdir -p /workspaces/.tailscale || true
15
/usr/local/sbin/tailscaled \
@@ -20,5 +25,6 @@ elif command -v sudo &> /dev/null; then
20
25
else
21
26
echo "tailscaled could not start as root." 1&>2
22
27
fi
28
+unset TS_DEBUG_FIREWALL_MODE
23
29
24
30
exec "$@"
0 commit comments