mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-22 10:38:52 +00:00
9 lines
186 B
Plaintext
9 lines
186 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [[ $RUN_AS_ROOT != true ]]; then
|
|
PUID=${PUID:-917}
|
|
PGID=${PGID:-917}
|
|
groupmod -o -g "$PGID" pagermaid
|
|
usermod -o -u "$PUID" pagermaid
|
|
fi
|