Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have script.sh that must be run as user2. However, this script can only be run under user1 in my application.

I would like the following command to run:

su user2 -C script.sh

but be able to run without password.

I also want this to be very restrictive, as in user1 can only run script.sh under user2 and nothing else.

I've tried doing this with sudoers file and just got endlessly confused after hours of trying.

If somebody can provide an explicit example of how this can be accomplished (instead of something generic like use sudoers), it would be greatly appreciated.

share|improve this question

closed as off topic by Will Oct 1 '12 at 12:57

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 14 down vote accepted

Call visudo and add this:

user1 ALL=(user2) NOPASSWD: /home/user2/bin/test.sh

The command paths must be absolute! Then call sudo -u user2 /home/user2/bin/test.sh from a user1 shell. Done.

share|improve this answer
This works! Thanks. – user788171 Aug 1 '11 at 23:50

try running:

su -c "Your command right here" -s /bin/sh username

This will run the command as username given that you have permissions to sudo as that user.

share|improve this answer
strangly correct – James Andino Oct 9 '12 at 19:28
perfect and simple, it works!! +1 – techastute Jan 4 at 21:43
It worked as normal user with full sudo rights like this: sudo su -c "Your command right here" -s /bin/sh otheruser – rubo77 May 13 at 11:00
user1 ALL=(user2) NOPASSWD: /home/user2/bin/test.sh

The command paths must be absolute! Then call

sudo -u user2 /home/user2/bin/test.sh 

from a user1 shell. Done.

Question: How can we run from "user1's shell" (if i am writing a script or programatically)?

share|improve this answer

You are looking for sudo or the setuid settings. Check the man sudo && man chmod docs.

HTH

share|improve this answer
You can't have setuid shell scripts anymore. That feature has been disabled on every *nix variant I know decades ago. – Jeremy J Starcher Sep 21 '12 at 16:23

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