diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-01-26 10:08:22 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-01-26 10:08:22 +0100 |
commit | 1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64 (patch) | |
tree | 66ef9943181e65f8b328deb72b5372d24601c347 /docker/entrypoint.sh | |
parent | e81343f0838a84be80846d0b2288d3f114a57338 (diff) | |
parent | fdf47c42269f7adb7d5f3e60b8180e8b9bc77503 (diff) | |
download | vyos-build-1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64.tar.gz vyos-build-1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64.zip |
Merge branch 'current' of github.com:c-po/vyos-build into current
* 'current' of github.com:c-po/vyos-build:
Jenkins: cleanup
Docker: Make OPAM system wide available
When building linux-kernel use number of host CPUs on parallel build
When building parse Git commit ID
When building frr clean out Git repository first
Fix --verbose option when building submodules
Build submodules in parallel with number of host CPUs
submodules: add igmpproxy
submodules: add vyos-xe-guest-utilities
Diffstat (limited to 'docker/entrypoint.sh')
-rwxr-xr-x | docker/entrypoint.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 8db41103..ed6ca7d9 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -23,6 +23,10 @@ if ! grep -q $NEW_GID /etc/group; then groupadd --gid $NEW_GID $USER_NAME fi +# libvyosconfig depends on OCaml/OPAM so we make sure +# we can use it +echo "eval \$(opam env --root=/opt/opam --set-root)" >> /etc/skel/.bashrc + useradd --shell /bin/bash --uid $NEW_UID --gid $NEW_GID --non-unique --create-home $USER_NAME usermod --append --groups sudo $USER_NAME sudo chown $NEW_UID:$NEW_GID /home/$USER_NAME |