From 4123babceae85769c0cacba6454124020592ae61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=9C=EA=B3=A8=EC=95=BD=EC=82=AC?= Date: Sat, 13 Sep 2025 22:34:18 +0900 Subject: [PATCH] Fix Magic DNS issue: Enable DNS acceptance in Windows installation scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed --accept-dns=false to --accept-dns=true in both: - farmq-install-en.ps1 - farmq-install.ps1 This allows Windows clients to receive Headscale Magic DNS configuration (100.64.0.1) automatically during installation, enabling proper name resolution for *.headscale.local domains. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- farmq-install-en.ps1 | 2 +- farmq-install.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/farmq-install-en.ps1 b/farmq-install-en.ps1 index a4faf9e..9f81122 100644 --- a/farmq-install-en.ps1 +++ b/farmq-install-en.ps1 @@ -258,7 +258,7 @@ function Register-Headscale { "--login-server=$HeadscaleServer", "--authkey=$PreAuthKey", "--accept-routes", - "--accept-dns=false" + "--accept-dns=true" ) & $tailscalePath $arguments diff --git a/farmq-install.ps1 b/farmq-install.ps1 index 12c9f48..cb3523a 100644 --- a/farmq-install.ps1 +++ b/farmq-install.ps1 @@ -264,7 +264,7 @@ function Register-Headscale { "--login-server=$HeadscaleServer", "--authkey=$PreAuthKey", "--accept-routes", - "--accept-dns=false" + "--accept-dns=true" ) & $tailscalePath $arguments