Ubuntu 14.04 - Jenkins 用户 NOPASSWD 配置

Ubuntu 14.04 - Jenkins 用户 NOPASSWD 配置

我正在尝试让我的 jenkins 用户能够使用 www-data 用户执行脚本,因此我尝试添加

jenkins ALL=NOPASSWD:ALL

在我的 sudoers 文件末尾,但它不起作用,当我使用命令时要求输入密码

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

我也尝试在 /etc/sudoers.d/ 下的文件中添加该行,但没有帮助。

以下是我今天的 sudoers 文件

#
# 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

我在许多论坛上看到,必须在 sudoers 文件末尾添加该行,我照做了,但一直不起作用。您有什么想法吗?

答案1

找到以下行:

%sudo   ALL=(ALL:ALL) ALL

用以下行替换它:

%sudo   ALL=(ALL:ALL) NOPASSWD: ALL

相关内容