Fix Magic DNS issue: Enable DNS acceptance in Windows installation scripts

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 <noreply@anthropic.com>
This commit is contained in:
시골약사 2025-09-13 22:34:18 +09:00
parent fb00b0a5fd
commit 4123babcea
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ function Register-Headscale {
"--login-server=$HeadscaleServer", "--login-server=$HeadscaleServer",
"--authkey=$PreAuthKey", "--authkey=$PreAuthKey",
"--accept-routes", "--accept-routes",
"--accept-dns=false" "--accept-dns=true"
) )
& $tailscalePath $arguments & $tailscalePath $arguments

View File

@ -264,7 +264,7 @@ function Register-Headscale {
"--login-server=$HeadscaleServer", "--login-server=$HeadscaleServer",
"--authkey=$PreAuthKey", "--authkey=$PreAuthKey",
"--accept-routes", "--accept-routes",
"--accept-dns=false" "--accept-dns=true"
) )
& $tailscalePath $arguments & $tailscalePath $arguments