mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 14:17:46 +00:00
Don't try to chown symlink destinations
The symlinks from edx-platform that point to node_modules/ may have non-existing targets in case of mounted edx-platform repo. Closes #20.
This commit is contained in:
parent
419aa27501
commit
b05e01d27e
@ -7,7 +7,7 @@ if [ "$USERID" -ne 1000 ]
|
|||||||
then
|
then
|
||||||
echo "creating new user 'openedx' with UID $USERID"
|
echo "creating new user 'openedx' with UID $USERID"
|
||||||
useradd -m openedx -u $USERID
|
useradd -m openedx -u $USERID
|
||||||
chown -R openedx /openedx
|
chown --no-dereference -R openedx /openedx
|
||||||
|
|
||||||
# Run CMD as different user
|
# Run CMD as different user
|
||||||
exec chroot --userspec="$USERID" --skip-chdir / "$@"
|
exec chroot --userspec="$USERID" --skip-chdir / "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user