Git Product home page Git Product logo

Comments (5)

andrewrjones avatar andrewrjones commented on August 17, 2024

I don't think it is sending the pty option through to the exec, but that shouldn't be too hard to fix.

I think we just need to change line 76 to c.exec(command, options.pty, function (err, stream) {, then pass the options like this:

sshexec: {
  test: {
    command: 'sudo uptime',
    options: {
      config: 'myhost',
      pty: true
    }
  },

Or, if you want more control, pty can be an object with the options from here.

Would you be able to give this a try?

from grunt-ssh.

sjclemmy avatar sjclemmy commented on August 17, 2024

I think I looked into it a bit more and concluded that it requires calling ssh2 with a different command (I can't remember, shell instead of exec?), so I just used a grunt shell wrapper instead and sent the raw command.

from grunt-ssh.

That-David-Guy avatar That-David-Guy commented on August 17, 2024

I'm stumped on this problem as well. Is there an example of the work around I can view?

from grunt-ssh.

sjclemmy avatar sjclemmy commented on August 17, 2024

I used a different grunt plugin - https://github.com/sindresorhus/grunt-shell and configured like this:

shell: {
updateThePermissions: {
command: 'ssh -t -t [email protected] "sudo chown -R :user:group path/to/whatever/Im/doing"',
options: {
stdout: true
}
}
}

from grunt-ssh.

That-David-Guy avatar That-David-Guy commented on August 17, 2024

Cool.

I started rewritting the grunt-ssh as grunt-shell commands, like so

shell: {
    makeReleaseDir: {
      command: 'ssh -t -t user@server "sudo mkdir -m 777 -p /path/to/site/' + dirname + '/logs"',
     options: {
       stdout: true
     }
  },

Then re-reading your comment again I realised I could just chown the folder so I would not need the sudo at all. So I did that, then switched back to using grunt-ssh, and it works great.

Thanks for your help.

from grunt-ssh.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.