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

関連情報