Merge pull request #117 from maxpoulin64/fix-user-filemode
Remove attempts to set file modes
This commit is contained in:
commit
0f48b11a22
@ -80,8 +80,7 @@ ClientManager.prototype.addUser = function(name, password) {
|
||||
mkdirp.sync(path);
|
||||
fs.writeFileSync(
|
||||
path + "/" + name + ".json",
|
||||
JSON.stringify(user, null, " "),
|
||||
{mode: "0777"}
|
||||
JSON.stringify(user, null, " ")
|
||||
);
|
||||
} catch (e) {
|
||||
throw e;
|
||||
@ -111,7 +110,6 @@ ClientManager.prototype.updateUser = function(name, opts) {
|
||||
fs.writeFileSync(
|
||||
path,
|
||||
JSON.stringify(user, null, " "),
|
||||
{mode: "0777"},
|
||||
function(err) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
|
Loading…
Reference in New Issue
Block a user