diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-02-21 17:58:36 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-02-21 17:58:36 +0100 |
commit | dd29ea0bac4d93448899c06559a5fc143065a20e (patch) | |
tree | ee63a494e89b6f9073e9738d6587979687d29616 /docker/entrypoint.sh | |
parent | 1ac06d883fe37d7f56fff53815f8c766aa2aeed1 (diff) | |
download | vyos-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/entrypoint.sh')
-rwxr-xr-x | docker/entrypoint.sh | 1 |
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 |