Ubuntu – running bash script as root with hardcoded password

bashPHPsudoUbuntu

Most probably this has already been answered in other threads, but I can't find the exact solution.

I need to call a bash script via a php script which (bash) changes system time. I need to run that bash script as root while not changing apache permissions, i.e. php script called by user 'nobody' and the php script runs the script as root (sudoing is ok as I'm on ubuntu). As that will be called from a browser, I need to get rid of the password prompt

Best Answer

Try:

$ visudo
nobody ALL = NOPASSWD: /path/to/script.sh

Which will allow user "nobody" to run the script.sh as any user without password prompt.