mirror of
https://github.com/ep1cman/unifi-protect-backup.git
synced 2025-12-05 23:53:30 +00:00
9 lines
160 B
Plaintext
Executable File
9 lines
160 B
Plaintext
Executable File
#!/usr/bin/with-contenv /bin/sh
|
|
|
|
echo "[cont-init.d] Setting up user"
|
|
PUID=${PUID:-911}
|
|
PGID=${PGID:-911}
|
|
|
|
groupmod -o -g "$PGID" abc
|
|
usermod -o -u "$PUID" abc
|