From af39488dd4ea16bad019163fb23eeb8b54940f5c Mon Sep 17 00:00:00 2001 From: Christoph Date: Fri, 8 Nov 2024 21:47:15 +0100 Subject: [PATCH] Add `speedtest-cli` to troubleshooting packages --- share/docker/tailscale_container_hook | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/docker/tailscale_container_hook b/share/docker/tailscale_container_hook index 9036cdfc6..e8b46d966 100755 --- a/share/docker/tailscale_container_hook +++ b/share/docker/tailscale_container_hook @@ -58,11 +58,11 @@ if [ ! -f /usr/bin/tailscale ] || [ ! -f /usr/bin/tailscaled ]; then if [ "${TAILSCALE_TROUBLESHOOTING}" = "true" ]; then if which apt-get >/dev/null 2>&1; then - PACKAGES_TROUBLESHOOTING="curl dnsutils iputils-ping " + PACKAGES_TROUBLESHOOTING="curl dnsutils iputils-ping speedtest-cli " elif which apk >/dev/null 2>&1; then - PACKAGES_TROUBLESHOOTING="curl bind-tools iputils-ping " + PACKAGES_TROUBLESHOOTING="curl bind-tools iputils-ping speedtest-cli " elif which pacman >/dev/null 2>&1; then - PACKAGES_TROUBLESHOOTING="curl dnsutils iputils " + PACKAGES_TROUBLESHOOTING="curl dnsutils iputils speedtest-cli " fi echo "Tailscale Troubleshooting enabled!" echo "Installing additional packages: $(echo "${PACKAGES_TROUBLESHOOTING}" | sed 's/[[:blank:]]*$//' | sed 's/ /, /g')"