Merge pull request #599 from ljm42/patch-1

Allow non-unique GIDs
This commit is contained in:
ahyear 2020-03-15 04:43:09 +01:00 committed by GitHub
commit b741f1e504
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ map_uidgid() {
if [[ ${USERMAP_NEW_UID} != "${USERMAP_ORIG_UID}" || ${USERMAP_NEW_GID} != "${USERMAP_ORIG_GID}" ]]; then
echo "Mapping UID and GID for paperless:paperless to $USERMAP_NEW_UID:$USERMAP_NEW_GID"
usermod -u "${USERMAP_NEW_UID}" paperless
groupmod -g "${USERMAP_NEW_GID}" paperless
groupmod -o -g "${USERMAP_NEW_GID}" paperless
fi
}