mscdex
mscdex
@mayeut Thanks, I ended up using blend to (first) replace instances of `_` with `/`, since `_` has a much higher value, so it doesn't really work with the initial...
I am getting this same error with a vanilla nodejs 0.1.92 installation on CentOS 5.2 32-bit Final. EDIT: If I output the JSON value of "this._values" in lib/mysql/node-promise.js in the...
There has to be a username from somewhere. Perhaps you're expecting the local username to be automatically used as the remote username when it's not explictly given?
FWIW you can pass multiple authentication methods to ssh2 and it will (currently) try them in this order: Password -> Private Key -> Agent (-> keyboard-interactive if tryKeyboard is passed...
This is something that has to be added yet to `ssh2` which `grunt-ssh` uses. I'm in the process of working on adding a `preserve` option.
FWIW here's how you might do it with plain ssh2: ``` javascript ssh.exec('bash -s', function(err, stream) { if (err) throw err; // allow us to close stdin but still allow...
`ssh2`, the library that `grunt-ssh` uses, does not support PuTTY keys yet. I am already in the process of adding support for them.
I can't really help you as I don't use Windows. There's probably a way programmatically, but you'll need to search google or elsewhere.
Have you checked the contents of `event.headers` to know what is the proper casing? It must be something other than the two you're attempting to access.