mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
mc: avoid usermod when UID matches current user ID
This commit is contained in:
parent
6ec6655280
commit
7005f00df0
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ $(id -u) = 0 ]; then
|
||||
if [[ -v UID ]]; then
|
||||
if [[ -v UID && $UID != $(id -u) ]]; then
|
||||
usermod -u $UID minecraft
|
||||
fi
|
||||
if [[ -v GID ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user