From a8f8f277ff6c8dc9ea060e53c6debbd30dbd87f7 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Tue, 7 Sep 2010 17:57:52 +0400 Subject: s4 provision: start with gpo of version 0 and be consistent between different policies --- source4/scripting/python/samba/provision.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/scripting/python') diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 0d4b8dc596..4b74300f41 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -980,7 +980,7 @@ def create_gpo_struct(policy_path): if not os.path.exists(policy_path): os.makedirs(policy_path, 0775) open(os.path.join(policy_path, "GPT.INI"), 'w').write( - "[General]\r\nVersion=65543") + "[General]\r\nVersion=0") p = os.path.join(policy_path, "MACHINE") if not os.path.exists(p): os.makedirs(p, 0775) -- cgit