子文件夹上的权限设置似乎不会覆盖父文件夹上的权限设置。 这是文件夹布局
/-01.Standard Assets
-02.Opportunities|
|-01.RIF
|-02.FUF
-03. Operations
这是身份验证
[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average
[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
# [/foo/bar]
# harry = rw
# &joe = r
# * =
# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]
* = r
[/01.Standard Assets]
sally = rw
* =
[/02.Opportunities]
sally = rw
harry = r
* =
[/03.Operations]
sally = rw
* =
[/02.Opportunities/00.Templates]
* = r
[/02.Opportunities/01.RIF]
harry = rw
* = r
[/02.Opportunities/02.FUF]
* = rw
我希望用户“ harry”只能访问并看到文件夹01.RIF,但是上面的设置不起作用。相反,哈利始终可以看到01.RIF和02.FUF。
请告知。
致谢
答案 0 :(得分:0)
你有
[/02.Opportunities]
harry = r
后面没有不重载(用户级操作数)在[/02.Opportunities/02.FUF]
中。因此,哈里可以rw
中[/02.Opportunities/01.RIF]
直接定义,r
中[/02.Opportunities/02.FUF]
继承[/02.Opportunities]
/ p>