diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-12 13:49:18 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-12 14:58:38 +0200 |
commit | e10d7d9941fe9a582a353eebfdd7eb46e8cc98c1 (patch) | |
tree | 1c940fac1cc28ac8b3a39b3e2bbd3daa93b9bc07 | |
parent | 1c5390e39fbc2090e2eb4ff8846519dac08854b4 (diff) | |
download | samba-e10d7d9941fe9a582a353eebfdd7eb46e8cc98c1.tar.gz samba-e10d7d9941fe9a582a353eebfdd7eb46e8cc98c1.tar.bz2 samba-e10d7d9941fe9a582a353eebfdd7eb46e8cc98c1.zip |
s4:provision: place the sysvol share under "state dir" instead of "lock dir"
metze
-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 b20e584776..71979406b2 100644 --- a/source4/scripting/python/samba/provision/__init__.py +++ b/source4/scripting/python/samba/provision/__init__.py @@ -726,7 +726,7 @@ def make_smbconf(smbconf, hostname, domain, realm, serverrole, statedir_line = "" cachedir_line = "" - sysvol = os.path.join(lp.get("lock dir"), "sysvol") + sysvol = os.path.join(lp.get("state dir"), "sysvol") netlogon = os.path.join(sysvol, realm.lower(), "scripts") setup_file(setup_path("provision.smb.conf.%s" % smbconfsuffix), |