Okay, so I have <user> added to group sudo in /etc/group.
Either create a new group or use an exiting group that is not being used. and then add the group to the sido script. so for a new group:1. Add a new group to /etc/group with the following command:groupadd groupname (where groupname is a single word)2. Open the /etc/group file and add your username to your new group as discussed before.3. Open the sudo script file with visudo and add the groupname following stanza to the file:%groupname ALL=(ALL) NOPASSWD: ALLThis is basically the same thing. If you are the only user or admin on your system than this is overkill and you could just use the %sudo group stanza as discussed before. However if you are planning or have serveral administrators that will have different permissions than it would be best to re-think not using passwords.