Fix uid variable name duplication/ambiguity

`uid` is used twice, where it should be `uid` and `gid`, resulting in an attempted execution of something like `id -g 1500` rather than `id -g syncgroup`. These variable names are already confusing due to the nature of the functions, so I made it clear they're strings rather than numeric IDs.
This commit is contained in:
Lolcow Admin 2015-12-11 00:20:40 -05:00
parent 11d4c4ca62
commit 29c0df4fcc
1 changed files with 7 additions and 7 deletions

View File

@ -9,9 +9,9 @@ var needPermissionsFixed = [
path.join(__dirname, "..", "google-drive-subtitles")
];
function fixPermissions(uid, gid) {
uid = resolveUid(uid);
gid = resolveGid(uid);
function fixPermissions(user, group) {
var uid = resolveUid(user);
var gid = resolveGid(group);
needPermissionsFixed.forEach(function (dir) {
if (fs.existsSync(dir)) {
fs.chownSync(dir, uid, gid);
@ -19,12 +19,12 @@ function fixPermissions(uid, gid) {
});
}
function resolveUid(uid) {
return parseInt(execSync('id -u ' + uid), 10);
function resolveUid(user) {
return parseInt(execSync('id -u ' + user), 10);
}
function resolveGid(uid) {
return parseInt(execSync('id -g ' + uid), 10);
function resolveGid(group) {
return parseInt(execSync('id -g ' + group), 10);
}
if (Config.get("setuid.enabled")) {