From 051042229db70f6272132c259fb69adc74fb8648 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 2 May 2012 09:38:39 +1000 Subject: [PATCH] s4-provision: set 'dcerpc endpoint servers' but not 'vfs objects' The VFS objects are now set in the fileserver.conf, but this is only read by smbd, so the provision-time smb.conf needs to turn off the extra Samba4 DCE/RPC services. Andrew Bartlett --- source4/scripting/python/samba/provision/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/scripting/python/samba/provision/__init__.py b/source4/scripting/python/samba/provision/__init__.py index 04cafa9c976..db202eff479 100644 --- a/source4/scripting/python/samba/provision/__init__.py +++ b/source4/scripting/python/samba/provision/__init__.py @@ -1654,7 +1654,7 @@ def provision(logger, session_info, credentials, smbconf=None, if not use_ntvfs: server_services.append("-smb") server_services.append("+s3fs") - global_param["vfs objects"] = ["acl_xattr"] + global_param["dcerpc endpoint servers"] = ["-winreg", "-srvsvc"] if len(server_services) > 0: global_param["server services"] = server_services -- 2.34.1