Update 10-setup_user.sh
UID and GUID were flipped and didn't match text in echo line. Likewise swapped ln10&11 to maintain consistency.
This commit is contained in:
@@ -6,9 +6,9 @@ USER_PASSWORD=${USER_PASSWORD:-password}
|
|||||||
|
|
||||||
echo "**** Configure default user ****"
|
echo "**** Configure default user ****"
|
||||||
|
|
||||||
echo "Setting run user uid=${PGID}(${USER}) gid=${PUID}(${USER})"
|
echo "Setting run user uid=${PUID}(${USER}) gid=${PGID}(${USER})"
|
||||||
groupmod -o -g "${PGID}" ${USER}
|
|
||||||
usermod -o -u "${PUID}" ${USER}
|
usermod -o -u "${PUID}" ${USER}
|
||||||
|
groupmod -o -g "${PGID}" ${USER}
|
||||||
|
|
||||||
|
|
||||||
echo "Adding run user to video, input and audio groups"
|
echo "Adding run user to video, input and audio groups"
|
||||||
|
|||||||
Reference in New Issue
Block a user