Ubuntu 14.04 - Jenkins 사용자 NOPASSWD 구성

Ubuntu 14.04 - Jenkins 사용자 NOPASSWD 구성

내 젠킨스 사용자가 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

관련 정보