@@ -1,5 +0,0 @@
-#!/bin/bash
-if [[ $(cat /etc/timezone) != $TZ ]] ; then
- echo "$TZ" > /etc/timezone
- exec dpkg-reconfigure -f noninteractive tzdata
-fi
@@ -1,13 +0,0 @@
-
-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
-echo "
------------------------------------
-GID/UID
-User uid: $(id -u abc)
-User gid: $(id -g abc)
-"