is there a straight-forward way to allow a user to run (for example)

/usr/bin/pacman -S -u

as root, without allowing him to run

/usr/bin/pacman -S -u some_package

?

The line

user ALL=(root) NOPASSWD: /usr/bin/pacman -S -u

allows both, and

user ALL=(root) NOPASSWD: /usr/bin/pacman -S -u ""

appears to be semantically equivalent.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

For your case try something like this:

Cmnd_Alias PACMAN = /usr/bin/pacman -S -u, ! /usr/bin/pacman -S -u some_package
user ALL=(root) NOPASSWD: PACMAN

You can use shell glob patterns like [a-z],[0-9],* etc. in your sudoers file to exclude packages that match a certain pattern.

link|improve this answer
thanks! 7 more to go.. – nisc Jul 27 '10 at 21:51
feedback

Write a script that does what you want and give sudo access to it.

Also make sure that whatever environment this is run in does not have access to the networking at all, or they can just use their own dns to spoof the mirror and then run arbitrary code as root when it gets installed by pacman.

link|improve this answer
thats not an elegant way, sudo supports by default the exact given case – mugen kenichi Jul 26 '10 at 10:59
feedback

Your Answer

 
or
required, but never shown

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