http://www.inc.com/ilya-pozin/9-things-that-motivate-employees-more-than-money.html
Enjoy!
http://www.inc.com/ilya-pozin/9-things-that-motivate-employees-more-than-money.html
Enjoy!
ivan ALL=(ALL) NOPASSWD: ALLThis line allows the ivan user to run any command, as any user, on any system, WITHOUT having to type in ivan's password. The problem is that for some reason the system still asked for ivan's password. After a bit of digging, I discovered that the following can be used to figure out which user lines you match in the sudoers file:
sudo -lWhich provides output like the following:
User ivan may run the following commands on this host:It turns out, there's a line in /etc/sudoers that allows anyone in the wheel group the ability to run commands, as any user, on any system, PROVIDED they type in their password correctly. And that's exactly what we see above, there are two lines that this user matches, since ivan is in the wheel group. To correct this, either allow the wheel group to run with NOPASSWD (not ideal), remove NOPASSWD from ivan's entry (ideal), or remove ivan from the wheel group. Fun!
(ALL) NOPASSWD: ALL
(ALL) ALL