From c2a28c043c713af6fdbd24da8b262220787c18d8 Mon Sep 17 00:00:00 2001 From: Xe Date: Sun, 3 Jul 2022 12:31:19 +0000 Subject: [PATCH] hack: add script to unfuck tailscale Signed-off-by: Xe --- hack/cleanupts.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 hack/cleanupts.sh diff --git a/hack/cleanupts.sh b/hack/cleanupts.sh new file mode 100755 index 0000000..1e49201 --- /dev/null +++ b/hack/cleanupts.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +for host in 192.168.2.32 192.168.2.33 192.168.2.34 192.168.2.35; do + ssh root@$host systemctl stop tailscaled.service + ssh root@$host ip link delete tailscale0 +done