Displaying 1 result from an estimated 1 matches for "zguk".
Did you mean:
jguk
1998 Nov 19
0
Samba doesn't fully respect directory permissions?
...re that Samba doesn't fail in the
cd-equivalent...
OOK! Found it. Any change-directory operation is
done as a lazy evaluation, just like Unix.
Therefor, the cd should fail if and only if there is
no execute on the directory or some directory in the
path to it.
On unix, we get
$ mkdir zguk
$ chmod a-x zguk
$ cd zguk
/bin/ksh: zguk: permission denied
ok, as expected...
$ chmod +x zguk
$ chmod a-r zguk
$ ls zguk
zguk: Permission denied
also ok
$ cd zguk
the probable seat of the problem
$ $ ls
.: Permission denied
as expected.
Is this what you're observing from the c...