From 0e60874782c2df3bf5caa63a7ad818927971fe3b Mon Sep 17 00:00:00 2001 From: Stian Buch Larsen Date: Fri, 28 Aug 2015 12:54:56 +0200 Subject: [PATCH] Removed new_user from here --- init/11_new_user.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 init/11_new_user.sh diff --git a/init/11_new_user.sh b/init/11_new_user.sh deleted file mode 100644 index 9d0cf40..0000000 --- a/init/11_new_user.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -if [ -n "$PUID" -a "$(id -u abc)" != "$PUID" ]; then usermod -o -u "$PUID" abc ; fi -if [ -n "$PGID" -a "$(id -g abc)" != "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi - -echo " ------------------------------------ -Plex GID/UID ------------------------------------ -Plex uid: $(id -u abc) -Plex gid: $(id -g abc) ------------------------------------ -Plex will now continue to boot. -" -sleep 2