$ mkdir d
$ touch d/y
$ ln -s d l
- $ getfacl -dR . | grep file | sort
+The result of "getfacl -dR . | grep file | sort" is related with
+the dentry item order in parent directory. Such order depends on
+FS implementation. Fix with -P (--physical) option.
+# $ getfacl -dR . | grep file | sort
+ $ getfacl -dRP . | grep file | sort
> # file: .
> # file: d
> # file: d/y
> e/h
following 2 lines seems not valid, which also failed on ext3 in FC3 enviroment,
although it pass in FC2. commented out by CFS (agreed with HP)
+Replaced "echo" with "touch" can resolve such problem.
# $ echo i > e/i
# > e/i: Permission denied
+ $ touch e/i
+ > touch: cannot touch `e/i': Permission denied
$ su
$ setfacl -m u:bin:rwx e