Merge pull request +8737 from c9/use-open-for-repos

Use open for repos
pull/134/head
Fabian Jakobs 2015-08-18 10:58:06 +02:00
commit b8cb07d9e7
1 zmienionych plików z 4 dodań i 3 usunięć

7
node_modules/c9/ssh.js wygenerowano vendored
Wyświetl plik

@ -18,6 +18,7 @@ exports.buildArgs = function(prvkeyFile, host) {
"-o", "IdentityFile=" + prvkeyFile,
"-o", "UserKnownHostsFile=/dev/null",
"-o", "StrictHostKeyChecking=no",
"-o", "IdentitiesOnly=yes",
"-F", "/dev/null", // use empty config file to not depend on local settings
// force pseudo terminal to make sure that the remote process is killed
// when the local ssh process is killed
@ -148,9 +149,9 @@ exports.generateKeyPair = function(email, callback) {
exports.validateSSHKey = function(prvkey, host, callback) {
exports.exec(prvkey, host, "", [], function(err, stdout, stderr) {
// console.log("out >> " + stdout);
// console.log("err >> " + stderr);
// console.log(err);
debug("out >> " + stdout);
debug("err >> " + stderr);
debug(err);
callback(null, !stderr.match(/Permission denied \(.*publickey/));
});
};