Setup prompts default to Yes for Go/tailscaled and funnel assist

This commit is contained in:
Peter Steinberger
2025-11-24 11:47:11 +01:00
parent b9c9339ae4
commit 80c300cb67

View File

@@ -352,7 +352,7 @@ async function ensureFunnel(port: number) {
console.error('Tailscale Funnel is not enabled on this tailnet/device.');
console.error('Enable in admin console: https://login.tailscale.com/admin (see https://tailscale.com/kb/1223/funnel)');
console.error('macOS user-space tailscaled docs: https://github.com/tailscale/tailscale/wiki/Tailscaled-on-macOS');
const proceed = await promptYesNo('Attempt local setup with user-space tailscaled?', false);
const proceed = await promptYesNo('Attempt local setup with user-space tailscaled?', true);
if (!proceed) process.exit(1);
await ensureGoInstalled();
await ensureTailscaledInstalled();