mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
selftest: add "fruit:veto_appledouble = no" to fruit shares
This is needed for a subsequent commit that modifies an existing test to write a ._ file over SMB instead of using the ugly local creation hack. SMB acces of ._ files requires "fruit:veto_appledouble = no", so let's set it. Bug: https://bugzilla.samba.org/show_bug.cgi?id=13155 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
ac880848a9
commit
3f9b45a410
@ -1926,18 +1926,21 @@ sub provision($$$$$$$$$)
|
||||
fruit:metadata = netatalk
|
||||
fruit:locking = netatalk
|
||||
fruit:encoding = native
|
||||
fruit:veto_appledouble = no
|
||||
|
||||
[vfs_fruit_metadata_stream]
|
||||
path = $shrdir
|
||||
vfs objects = fruit streams_xattr acl_xattr
|
||||
fruit:resource = file
|
||||
fruit:metadata = stream
|
||||
fruit:veto_appledouble = no
|
||||
|
||||
[vfs_fruit_stream_depot]
|
||||
path = $shrdir
|
||||
vfs objects = fruit streams_depot acl_xattr
|
||||
fruit:resource = stream
|
||||
fruit:metadata = stream
|
||||
fruit:veto_appledouble = no
|
||||
|
||||
[vfs_wo_fruit]
|
||||
path = $shrdir
|
||||
|
@ -4015,6 +4015,9 @@ static bool test_readdir_attr_illegal_ntfs(struct torture_context *tctx,
|
||||
|
||||
if (!strcmp(found, ".") || !strcmp(found, ".."))
|
||||
continue;
|
||||
if (strncmp(found, "._", 2) == 0) {
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user