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>
pull/5371/head
Denton Gentry 2 years ago committed by Denton Gentry
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…
Cancel
Save