mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
mc: avoid usermod when UID matches current user ID
This commit is contained in:
parent
6ec6655280
commit
7005f00df0
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue