Dont attempt to create a user that already exists

This commit is contained in:
Valeriy Manzhos 2026-04-10 15:55:46 +03:00
parent e0ae89b5a6
commit cf19225cbd
No known key found for this signature in database
GPG key ID: 6547CFC8E2EC3D90

View file

@ -574,9 +574,9 @@ EOF
install -m 755 /dev/stdin "$DEBIAN_DIR/preinst" <<'EOF'
#!/bin/bash
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
id -u 785 || useradd --no-create-home --uid 785 --system v2rayn-core
getent group v2rayn || groupadd v2rayn # Users in this group are allowed to use TUN
id -u 1000 && gpasswd -a $(id -un 1000) v2rayn
if [ ! -d /etc/iproute2/rt_tables ]; then
mkdir -p /etc/iproute2/
fi