Ubuntu 14.04 - Configuração do NOPASSWD do Usuário Jenkins

1

Estou tentando fazer com que meu usuário do jenkins consiga executar um script com o usuário www-data, então tentei adicionar

jenkins ALL=NOPASSWD:ALL

no final do meu arquivo sudoers, mas não funcionou, a senha foi solicitada quando usei o comando

sudo -u www-data /path/to/script.sh

Eu também tentei adicionar a linha em um arquivo em /etc/sudoers.d/ mas não ajudou.

Aqui está o meu arquivo sudo a partir de hoje

#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults        env_reset
Defaults        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

#Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

# User alias specification

Eu vi em muitos fóruns que a linha tinha que ser adicionada no final do arquivo sudoers que eu fiz, mas nunca funcionou. Você tem uma ideia?

    
por Tony Martin 19.09.2014 / 23:06

0 respostas