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.
25 lines
644 B
25 lines
644 B
13 years ago
|
if (module !== require.main) {
|
||
|
throw new Error("This file should not be loaded with require()")
|
||
|
}
|
||
|
|
||
|
if (!process.getuid || !process.getgid) {
|
||
|
throw new Error("this file should not be called without uid/gid support")
|
||
|
}
|
||
|
|
||
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}))
|
||
|
}
|