From c26425bbd1efabe2d20805aeeddd7b6699e83cad Mon Sep 17 00:00:00 2001 From: Valeriy Manzhos <47538801+InvisibleRain@users.noreply.github.com> Date: Mon, 6 Apr 2026 14:08:32 +0300 Subject: [PATCH] Add the default desktop user to the v2rayn group --- package-debian.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package-debian.sh b/package-debian.sh index f06f4c88..129de39f 100644 --- a/package-debian.sh +++ b/package-debian.sh @@ -572,6 +572,8 @@ EOF #!/bin/sh set -e useradd --no-create-home --uid 785 --system v2rayn-core +groupadd v2rayn # Users in this group are allowed to use TUN +id -u 1000 && gpasswd -a $(id -un 1000) v2rayn exit 0 EOF