mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Prevent ssh-keygen prompting for passphrase when blank
This commit is contained in:
parent
7e2b2a9a02
commit
eac98a6d4d
@ -22,19 +22,10 @@ var log;
|
||||
|
||||
function runSshKeygenCommand(args,cwd,env) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
console.log("Spawning command",args);
|
||||
try {
|
||||
var child = child_process.spawn(sshkeygenCommand, args, {cwd: cwd, detached: true, env: env});
|
||||
var stdout = "";
|
||||
var stderr = "";
|
||||
|
||||
var watchdog = setTimeout(function() {
|
||||
console.log("TIMEOUT");
|
||||
console.log("stdout",stdout);
|
||||
console.log("stderr",stderr);
|
||||
child.kill();
|
||||
},6000);
|
||||
|
||||
child.stdout.on('data', function(data) {
|
||||
stdout += data;
|
||||
});
|
||||
@ -42,10 +33,6 @@ function runSshKeygenCommand(args,cwd,env) {
|
||||
stderr += data;
|
||||
});
|
||||
child.on('close', function(code, signal) {
|
||||
clearTimeout(watchdog);
|
||||
console.log("sshKeyGen closed",code);
|
||||
console.log("sshKeyGen",stdout);
|
||||
console.log("sshKeyGen",stderr);
|
||||
if (code !== 0) {
|
||||
var err = new Error(stderr);
|
||||
err.stdout = stdout;
|
||||
@ -61,10 +48,6 @@ function runSshKeygenCommand(args,cwd,env) {
|
||||
resolve(stdout);
|
||||
}
|
||||
});
|
||||
} catch(err) {
|
||||
console.log("Threw error",err);
|
||||
reject(err);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@ -83,9 +66,8 @@ function generateKey(options) {
|
||||
if (options.comment) {
|
||||
args.push('-C', options.comment);
|
||||
}
|
||||
if (options.password) {
|
||||
args.push('-N', options.password);
|
||||
}
|
||||
args.push('-N', options.password||'');
|
||||
|
||||
return runSshKeygenCommand(args,__dirname);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user