You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. chown -R command can create long boot times (>1 day) with flattened encrypted directories, like cryfs
Describe the solution you'd like
Add environment variable DROPBOX_SKIP_PERMISSIONS
In the entrypoint script change:
# Change ownership to dropbox account on all working folders.
chown -R ${DROPBOX_UID}:${DROPBOX_GID} /opt/dropbox
to
# Change ownership to dropbox account on all working folders.if [[ -z"$DROPBOX_SKIP_PERMISSIONS" ]];then
chown -R ${DROPBOX_UID}:${DROPBOX_GID} /opt/dropbox
elseecho"Skipping permissions check, ensure the dropbox user owns all files."fi
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
chown -R
command can create long boot times (>1 day) with flattened encrypted directories, like cryfsDescribe the solution you'd like
DROPBOX_SKIP_PERMISSIONS
to
Additional context
N/A
The text was updated successfully, but these errors were encountered: