Configuring sudo to work without password
- by aidan
I'm trying to configure sudo to allow all users to restart apache without having to enter a password.
Security concerns aside, why isn't this working?
I added the line to /etc/sudoers: %admin ALL=NOPASSWD: /usr/sbin/apache2ctl
$sudo -l
User aidan may run the following commands on this host:
(root) NOPASSWD: /usr/sbin/apache2ctl
(ALL) ALL
$sudo /usr/sbin/apache2ctl
[sudo] password for aidan:
Thanks for any help.