Skip to content

Commit

Permalink
silently ignore missing posix module (it doesn't exists for arm64)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeltorio committed Jan 8, 2025
1 parent 5ee355f commit 3038300
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/lib/privilege-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ function _getConfigUidGid(userKey, groupKey, defaultUid, defaultGid) {
log.info('PrivilegeHelpers', 'Failed to resolve group id "%s"', config[groupKey]);
}
} else {
log.info('PrivilegeHelpers', 'Posix module not installed. Cannot resolve uid/gid');
// silently ignore
// log.info('PrivilegeHelpers', 'Posix module not installed. Cannot resolve uid/gid');
return { uid, gid };
}

return { uid, gid };
Expand Down

0 comments on commit 3038300

Please sign in to comment.