diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-02 09:38:39 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-02 10:53:50 +1000 |
commit | 051042229db70f6272132c259fb69adc74fb8648 (patch) | |
tree | 461b505e50cbf013b64d33b203757dce80273021 /source4/scripting | |
parent | 692b3bfd7feac632a7af3bb1df76116ffb14eea9 (diff) | |
download | samba-051042229db70f6272132c259fb69adc74fb8648.tar.gz samba-051042229db70f6272132c259fb69adc74fb8648.tar.bz2 samba-051042229db70f6272132c259fb69adc74fb8648.zip |
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
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/provision/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision/__init__.py b/source4/scripting/python/samba/provision/__init__.py index 04cafa9c97..db202eff47 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 |