Allowing users to run specific scripts as root

From Notes_Wiki
Revision as of 04:21, 10 November 2012 by Saurabh (talk | contribs) (Created page with "=Allowing users to run specific scripts as root= We can configure sudo with lines, like: <pre> saurabh ALL= NOPASSWD:/home/saurabh/Desktop/test.sh </pre> to allow user saurab...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Allowing users to run specific scripts as root

We can configure sudo with lines, like:

saurabh ALL= NOPASSWD:/home/saurabh/Desktop/test.sh

to allow user saurabh to run script 'test.sh' and nothing else with sudo command. User would be able to run script without supplying user password hence calling of script can be automated using users '.bash_rc' or '.bash_profile' files.