On my Ubuntu system I followed the instructions for enabling sudo without a password.
It is working well, or should I say too well.
I have a couple of users, say userA and userB, who have been added to the sudo group.
sudo usermod -aG sudo userA
sudo usermod -aG sudo userB
I did sudo visudo
and I added the following line at the bottom (i.e. the very last line):
userA ALL=(ALL) NOPASSWD: ALL
However, I am finding that sudo without password is enabled for both userA and userB.
Question: How can I enable sudo without password for userA, but not userB?