summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-21 17:58:36 +0100
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-21 17:58:36 +0100
commitdd29ea0bac4d93448899c06559a5fc143065a20e (patch)
treeee63a494e89b6f9073e9738d6587979687d29616 /docker
parent1ac06d883fe37d7f56fff53815f8c766aa2aeed1 (diff)
downloadvyos-build-dd29ea0bac4d93448899c06559a5fc143065a20e.tar.gz
vyos-build-dd29ea0bac4d93448899c06559a5fc143065a20e.zip
debian: T5003: Re-add chown on vyos_bld home directory
Removed accidentally in commit 41033fa
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/entrypoint.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index adc7264c..19c9423e 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -24,6 +24,7 @@ if ! grep -q $NEW_GID /etc/group; then
fi
useradd --shell /bin/bash --uid $NEW_UID --gid $NEW_GID --non-unique --create-home $USER_NAME
+sudo chown $NEW_UID:$NEW_GID /home/$USER_NAME
export HOME=/home/$USER_NAME
if [ "$(id -u)" == "0" ]; then