diff --git a/scripts/installer.sh b/scripts/installer.sh index 0249d0456..dbeb4aa92 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -305,10 +305,12 @@ main() { fi - # Step 3: run the installation. + # Step 4: run the installation. echo "Installing Tailscale for $OS $VERSION, using method $PACKAGETYPE" case "$PACKAGETYPE" in apt) + # Ideally we want to use curl, but on some installs we + # only have wget. Detect and use what's available. CURL= if type curl >/dev/null; then CURL="curl -fsSL"