From ed56c6660a2146f7e6abc31de1caab1b0cd33d73 Mon Sep 17 00:00:00 2001 From: kryptn Date: Sat, 12 Apr 2025 14:08:34 -0600 Subject: [PATCH] change --authkey to --auth-key --- src/routes/deploy/+page.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/deploy/+page.svelte b/src/routes/deploy/+page.svelte index fd0d4e8..f2f59e3 100644 --- a/src/routes/deploy/+page.svelte +++ b/src/routes/deploy/+page.svelte @@ -38,7 +38,7 @@ d.operator && d.operatorValue != '' && cmd.push('--operator=' + d.operatorValue); d.forceReauth && cmd.push('--force-reauth'); d.sshServer && cmd.push('--ssh'); - d.usePreAuthKey && d.preAuthKey !== '' && cmd.push('--authkey=' + d.preAuthKey); + d.usePreAuthKey && d.preAuthKey !== '' && cmd.push('--auth-key=' + d.preAuthKey); d.unattended && cmd.push('--unattended') // advertise @@ -142,7 +142,7 @@ name="Unattended" help="Run the tailscale client in unattended mode (on startup)" /> -