Coder Social home page Coder Social logo

Comments (5)

jorangreef avatar jorangreef commented on August 24, 2024

I tried the following on macOS 10.12.2 and it worked fine:

var sudo = require('sudo-prompt');
var command = "chown -R $(whoami) testdirectory";
sudo.exec(command, {}, console.log);

What does which whoami return?

Are you sure that pathToCopy exists?

What platform are you on?

Do you know that whoami when run under sudo will probably return root? You may want to get the user name outside of the sudo session first.

from sudo-prompt.

debelop13 avatar debelop13 commented on August 24, 2024

Yes path exists, I am in darwin and win32, crossplatform app.

Maybe I should reformulate the question:

I am doing an installer and I want to give permissions to user to make various directories and copy files.
Do you know how I can execute a javascript function with privileges?

Thanks!

from sudo-prompt.

jorangreef avatar jorangreef commented on August 24, 2024

Yes path exists, I am in darwin and win32, crossplatform app.

Your command as you gave it above will most likely not work on win32, since chown does not exist on win32.

You can use sudo-prompt to execute any shell command within a sudo session. For instance, if you need to execute a javascript function with privileges as you say then you could use sudo-prompt to launch node script.js. But from there, the rest is up to you.

Some suggestions:

  1. Do the simplest thing possible first, then build from there.
  2. Test your command in the terminal first on all platforms to make sure it works. If it does not work in the terminal then it will not work in sudo-prompt.
  3. Make sure you do not rely on any environment variables or current working directory when executing your command. Use absolute paths.

from sudo-prompt.

debelop13 avatar debelop13 commented on August 24, 2024

Hi,

I'm sorry but I'm little lost:

Now, I have node script (js) that copy all files.
This script is called by sudo-prompt like this:

var command = 'node ' + path.resolve(__dirname, '../vendor/installer/installationsudo.js') + ' "' + parameter + '"';

    sudo.exec(command, options, function (error, stdout, stderr) {
        if (error) {
            console.log(error)
            self.set('installationResults', error);
            self.set('installationFinished', true);
        } else {
            console.log(stdout)
            console.log(stderr)
            self.set('installationResults', "Installation done.");
            self.set('installationFinished', true);
        }
    });

This code works in debug mode, but not compiled with electron.

I am using electron v1.5.0 (with node v7.4.0), I thought that was for something wrong in my script, but if I execute this, also fails:

 var command = 'node -v'';
        sudo.exec(command, options, function (error, stdout, stderr) {
            if (error) {
                console.log(error)
            } else {
                console.log(stdout)
                console.log(stderr)
            }
        });

And I have same problem, in debug mode all is ok but once compiled no works.

I know that is not a problem with sudo-prompt, but I hope that you can help me, thanks!

from sudo-prompt.

jorangreef avatar jorangreef commented on August 24, 2024

Your second example var command = 'node -v''; has an extra single quote at the end of the line which would not compile.

It may also be that when Electron runs, it runs using a different environment, so you need to reference the node binary using an absolute path. Probably /usr/local/bin/node instead of just node.

from sudo-prompt.

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.