cmd/tailscale: set /dev/net perms in configure-host
Several customers have had issues due to the permissions on /dev/net. Set permissions to 0755. Fixes https://github.com/tailscale/tailscale/issues/5048 Signed-off-by: Denton Gentry <dgentry@tailscale.com>
This commit is contained in:
parent
d32700c7b2
commit
3c8d257b3e
|
@ -62,6 +62,9 @@ func runConfigureHost(ctx context.Context, args []string) error {
|
|||
return fmt.Errorf("creating /dev/net/tun: %v, %s", err, out)
|
||||
}
|
||||
}
|
||||
if err := os.Chmod("/dev/net", 0755); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := os.Chmod("/dev/net/tun", 0666); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue