We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ff0a6 commit b2d852fCopy full SHA for b2d852f
1 file changed
assets/runtime/functions
@@ -848,7 +848,7 @@ map_uidgid() {
848
# Change permissions on all files owned by the original UID/GID to the new UID/GID
849
# except for the data directory, which is expected to be managed by this docker and already has the correct permissions set
850
# --max-procs and -n options are used to speed up the process by parallelizing it and processing files in batches
851
- time find ${REDMINE_HOME} -path ${REDMINE_DATA_DIR}/\* -prune -o -print0 | xargs --max-procs="$(nproc)" -n 50 -0 chown -h ${REDMINE_USER}:
+ find ${REDMINE_HOME} -path ${REDMINE_DATA_DIR}/\* -prune -o -print0 | xargs --max-procs="$(nproc)" -n 50 -0 chown -h ${REDMINE_USER}:
852
fi
853
}
854
0 commit comments