From: Amitay Isaacs Date: Thu, 1 Mar 2012 08:37:25 +0000 (+1100) Subject: s4-provision: Use "state directory" from lp, as it is always set X-Git-Tag: samba-4.0.0alpha19~653 X-Git-Url: http://git.samba.org/samba.git/?p=samba.git;a=commitdiff_plain;h=00a5366fdbb58905ebc66bfe58e707a3b9c92b11 s4-provision: Use "state directory" from lp, as it is always set This fixes new provisions when --targetdir is not provided. Autobuild-User: Amitay Isaacs Autobuild-Date: Thu Mar 1 11:41:02 CET 2012 on sn-devel-104 --- diff --git a/source4/scripting/python/samba/provision/__init__.py b/source4/scripting/python/samba/provision/__init__.py index 48dd8673c7a..d00c3ded479 100644 --- a/source4/scripting/python/samba/provision/__init__.py +++ b/source4/scripting/python/samba/provision/__init__.py @@ -645,8 +645,7 @@ def make_smbconf(smbconf, hostname, domain, realm, targetdir, shares = {} if serverrole == "domain controller": - shares["sysvol"] = os.path.join(global_settings["state directory"], - "sysvol") + shares["sysvol"] = os.path.join(lp.get("state directory"), "sysvol") shares["netlogon"] = os.path.join(shares["sysvol"], realm.lower(), "scripts")