vote up 6 vote down star

I have a python script that I would like to add a "Shutdown when done" feature to.

I know I can use gksudo (when the user clicks on "shutdown when done") to ask the user for root privileges but how can I use those privileges at a later time (when the script is actually finished).

I have thought about chmod u+s on the shutdown command so I don't need a password but I really don't want to do that.

Any ideas how I can achieve this?

Thanks in advance, Ashy.

flag

3 Answers

vote up 2 vote down check

gksudo should have a timeout, I believe it's from the time you last executed a gksudo command.

So I think I'd just throw out a "gksudo echo meh" or something every minute. Should reset the timer and keep you active until you reboot.

link|flag
vote up 1 vote down

Escalate priority, spawn (fork (2)) a separate process that will wait (2), and drop priority in the main process.

link|flag
vote up 3 vote down

Instead of chmod u+sing the shutdown command, allowing passwordless sudo access to that command would be better..

As for allowing shutdown at the end of the script, I suppose you could run the entire script with sudo, then drop privileges to the initial user at the start of the script?

link|flag
Good thought, but careful with the syntax of the suders file. – dmckee Nov 14 '08 at 12:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.