linux – 如何仅向特定脚本文件授予sudo权限?

我希望用户在特定目录(在我的情况下,/usr/local / tomcat7 / bin)下的某些 shell脚本中拥有sudo权限(无需密码检查),并且无处可去.实现这一目标的最简单方法是什么?

/ etc / sudoers中的这样的东西似乎不起作用:

jsmith ALL=(ALL) nopASSWD: /usr/local/tomcat7/bin

解决方法

我想你差不多了.把/放在目录规范的末尾
jsmith ALL=(ALL) nopASSWD: /usr/local/tomcat7/bin/

来自sudoers手册页

A directory is a fully qualified path name ending in a ‘/’. When you specify a directory in a Cmnd_List,the user will be able to run any file within that directory (but not in any subdirectories therein).

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...