允许用户使用 sudo 执行任何操作,只有一个可执行文件作为 nopassword

允许用户使用 sudo 执行任何操作,只有一个可执行文件作为 nopassword

我有一个 Linux 用户,需要能够使用 sudo 执行任何命令,但除了一个可执行文件之外,它应该询问所有命令的密码。目前我的 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

# User 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) NOPASSWD:/bin/switch.sh

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

#includedir /etc/sudoers.d

所以我已将我的用户添加到 sudo 组,但是我认为我的语法错误,因为现在我只能使用 sudo 执行 switch.sh 而不能执行其他命令

答案1

对于%sudo组用户来说,允许任何内容,但/bin/switch.sh您需要第一行。第二行允许用户%sudo使用密码执行所有内容,但由于第一行优先,因此用户必须在第一行上输入除脚本之外的所有内容的密码。

%sudo    ALL=(root) NOPASSWD:/bin/switch.sh
%sudo    ALL=(ALL) ALL

相关内容