diff options
author | Matthieu Patou <mat@matws.net> | 2010-09-07 17:57:52 +0400 |
---|---|---|
committer | Matthieu Patou <mat@matws.net> | 2010-09-26 06:22:43 +0400 |
commit | a8f8f277ff6c8dc9ea060e53c6debbd30dbd87f7 (patch) | |
tree | 9f7e6f200322fc9277e12fe33d3c93a7e5f97f59 /source4/scripting | |
parent | 76d87b7fb51dfab8f85686bde7fed67701bc9092 (diff) | |
download | samba-a8f8f277ff6c8dc9ea060e53c6debbd30dbd87f7.tar.gz samba-a8f8f277ff6c8dc9ea060e53c6debbd30dbd87f7.tar.bz2 samba-a8f8f277ff6c8dc9ea060e53c6debbd30dbd87f7.zip |
s4 provision: start with gpo of version 0 and be consistent between different policies
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/provision.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |