Chown in sudoers file : Safe or not?

13,991

Yes.

From man sudoers:

   If a Cmnd has associated command line arguments, then the arguments in
   the Cmnd must match exactly those given by the user on the command line
   (or match the wildcards if there are any).  Note that the following
   characters must be escaped with a '\' if they are used in command
   arguments: ',', ':', '=', '\'.  The special command "sudoedit" is used
   to permit a user to run sudo with the -e option (or as sudoedit).  It
   may take command line arguments just as a normal command does.
Share:
13,991

Related videos on Youtube

Mike
Author by

Mike

Updated on September 18, 2022

Comments

  • Mike
    Mike almost 2 years

    Is it safe to add this command in sudoers file?

    mike ALL= NOPASSWD:/bin/chown -R www-data\:www-data /var/www
    

    and this is the only command that I want to run

    $mike@ubuntu: sudo chown -R www-data:www-data /var/www
    

    Thank you.