diff --git a/init/10_new_user.sh b/init/10_new_user.sh deleted file mode 100644 index 0e50749..0000000 --- a/init/10_new_user.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -#This File should always be included, its the one that makes PUID and GUID Work. -# - -if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -o -u "$PUID" abc ; fi -if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi -chown abc:abc -R /config -echo " ------------------------------------ -GID/UID ------------------------------------ -User uid: $(id -u abc) -User gid: $(id -g abc) ------------------------------------ -"