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

前端之家收集整理的这篇文章主要介绍了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).

原文链接:https://www.f2er.com/linux/400721.html

猜你在找的Linux相关文章