Você está perdendo um '%' no exemplo postado.
É suposto ser
%wheel ALL=(ALL) ALL
não
wheel ALL=(ALL) ALL
No CentOS 6.5, eu faria o seguinte para configurar o sudo para os usuários -
Quando eu tento a mesma coisa no CentOS 7, vejo o seguinte em / var / log / secure -
Oct 8 05:20:00 localhost sudo: jsmith : user NOT in sudoers ; TTY=pts/1 ; PWD=/home/jsmith ; USER=root ; COMMAND=/bin/bash
Este procedimento não é mais válido para o CentOS-7?
Mais informações -
arquivo / etc / group tem isso -
wheel:x:10:randomperson,cartman,jsmith
visudo mostra isso -
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
## Allows members of the 'sys' group to run networking, software,
## service management apps and more.
# %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
## Allows people in group wheel to run all commands
wheel ALL=(ALL) ALL
## Same thing without a password
# %wheel ALL=(ALL) NOPASSWD: ALL
saída do comando sudo -l -
[jsmith@localhost ~]$ sudo -l
[sudo] password for jsmith:
Sorry, user jsmith may not run sudo on localhost.
[jsmith@localhost ~]$