cmd/tailscaled: pick automatic tun device name on darwin
parent
88ab0173a7
commit
6680976b50
|
@ -52,6 +52,10 @@ func defaultTunName() string {
|
||||||
return "tun"
|
return "tun"
|
||||||
case "windows":
|
case "windows":
|
||||||
return "Tailscale"
|
return "Tailscale"
|
||||||
|
case "darwin":
|
||||||
|
// "utun" is recognized by wireguard-go/tun/tun_darwin.go
|
||||||
|
// as a magic value that uses/creates any free number.
|
||||||
|
return "utun"
|
||||||
}
|
}
|
||||||
return "tailscale0"
|
return "tailscale0"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue