]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
docs-xml: enable SMB3 Unix Extensions by default
authorRalph Boehme <slow@samba.org>
Wed, 5 Mar 2025 17:02:39 +0000 (18:02 +0100)
committerRalph Boehme <slow@samba.org>
Fri, 7 Mar 2025 20:06:31 +0000 (20:06 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Fri Mar  7 20:06:31 UTC 2025 on atb-devel-224

docs-xml/smbdotconf/protocol/smb3unixextensions.xml
lib/param/loadparm.c
source3/param/loadparm.c

index 4c0319976a79c3f00ea5d8dd25e4c79b87aafa66..269cf52962c2f1666fb64b59e7d71f6eafe96c82 100644 (file)
@@ -3,7 +3,7 @@
                  type="boolean"
                  xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
   <description>
-    <para>Experimental SMB 3.1.1 Unix Extensions.</para>
+    <para>Support for SMB 3.1.1 Unix Extensions.</para>
   </description>
-  <value type="default">no</value>
+  <value type="default">yes</value>
 </samba:parameter>
index ae3973305989507616f45eda6b1b9acba2f6c532..30a45511cb8a390607872bc7999949a81e192381 100644 (file)
@@ -3080,6 +3080,8 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
 
        lpcfg_do_global_parameter(lp_ctx, "smb3 directory leases", "Auto");
 
+       lpcfg_do_global_parameter(lp_ctx, "smb3 unix extensions", "yes");
+
        lpcfg_do_global_parameter(lp_ctx, "server multi channel support", "yes");
 
        lpcfg_do_global_parameter(lp_ctx, "kerberos encryption types", "all");
index a62da148b3823fe91ec536a939ce624fcafe00a1..9e528e395f13dce07dc262d7ec45ffa22019f5aa 100644 (file)
@@ -259,6 +259,7 @@ static const struct loadparm_service _sDefault =
        .spotlight_backend = SPOTLIGHT_BACKEND_NOINDEX,
        .honor_change_notify_privilege = false,
        .volume_serial_number = -1,
+       .smb3_unix_extensions = true,
        .dummy = ""
 };