@ -19,6 +19,7 @@ import (
"sort"
"sort"
"strings"
"strings"
"sync"
"sync"
"time"
shellquote "github.com/kballard/go-shellquote"
shellquote "github.com/kballard/go-shellquote"
"github.com/peterbourgon/ff/v3/ffcli"
"github.com/peterbourgon/ff/v3/ffcli"
@ -114,7 +115,7 @@ func newUpFlagSet(goos string, upArgs *upArgsT) *flag.FlagSet {
case "windows" :
case "windows" :
upf . BoolVar ( & upArgs . forceDaemon , "unattended" , false , "run in \"Unattended Mode\" where Tailscale keeps running even after the current GUI user logs out (Windows-only)" )
upf . BoolVar ( & upArgs . forceDaemon , "unattended" , false , "run in \"Unattended Mode\" where Tailscale keeps running even after the current GUI user logs out (Windows-only)" )
}
}
upf . DurationVar ( & upArgs . timeout , "timeout" , 0 , "maximum amount of time to wait for tailscaled to enter a Running state; default (0s) blocks forever" )
registerAcceptRiskFlag ( upf )
registerAcceptRiskFlag ( upf )
return upf
return upf
}
}
@ -148,6 +149,7 @@ type upArgsT struct {
hostname string
hostname string
opUser string
opUser string
json bool
json bool
timeout time . Duration
}
}
func ( a upArgsT ) getAuthKey ( ) ( string , error ) {
func ( a upArgsT ) getAuthKey ( ) ( string , error ) {
@ -646,6 +648,12 @@ func runUp(ctx context.Context, args []string) error {
// need to prioritize reads from 'running' if it's
// need to prioritize reads from 'running' if it's
// readable; its send does happen before the pump mechanism
// readable; its send does happen before the pump mechanism
// shuts down. (Issue 2333)
// shuts down. (Issue 2333)
var timeoutCh <- chan time . Time
if upArgs . timeout > 0 {
timeoutTimer := time . NewTimer ( upArgs . timeout )
defer timeoutTimer . Stop ( )
timeoutCh = timeoutTimer . C
}
select {
select {
case <- running :
case <- running :
return nil
return nil
@ -663,6 +671,8 @@ func runUp(ctx context.Context, args []string) error {
default :
default :
}
}
return err
return err
case <- timeoutCh :
return errors . New ( ` timeout waiting for Tailscale service to enter a Running state; check health with "tailscale status" ` )
}
}
}
}
@ -719,7 +729,7 @@ func addPrefFlagMapping(flagName string, prefNames ...string) {
// correspond to an ipn.Pref.
// correspond to an ipn.Pref.
func preflessFlag ( flagName string ) bool {
func preflessFlag ( flagName string ) bool {
switch flagName {
switch flagName {
case "auth-key" , "force-reauth" , "reset" , "qr" , "json" , " accept-risk":
case "auth-key" , "force-reauth" , "reset" , "qr" , "json" , " timeout", " accept-risk":
return true
return true
}
}
return false
return false