mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
422 B
17 lines
422 B
13 years ago
|
var argv = process.argv.slice(2)
|
||
|
, user = argv[0] || process.getuid()
|
||
|
, group = argv[1] || process.getgid()
|
||
|
|
||
|
if (!isNaN(user)) user = +user
|
||
|
if (!isNaN(group)) group = +group
|
||
|
|
||
|
console.error([user, group])
|
||
|
|
||
|
try {
|
||
|
process.setgid(group)
|
||
|
process.setuid(user)
|
||
|
console.log(JSON.stringify({uid:+process.getuid(), gid:+process.getgid()}))
|
||
|
} catch (ex) {
|
||
|
console.log(JSON.stringify({error:ex.message,errno:ex.errno}))
|
||
|
}
|