diff options
| author | Matthieu Patou <mat@matws.net> | 2010-08-14 20:44:35 +0400 | 
|---|---|---|
| committer | Matthieu Patou <mat@matws.net> | 2010-09-05 12:29:20 +0400 | 
| commit | 1d0815281e41cb1ca2cf72a3dba28a9ca75fb65d (patch) | |
| tree | bbd10a289c8d09c6635ce2b0dbe96fce67abc611 /source4 | |
| parent | e2d575ee8099bb31e3bc926cf6730a3ca77e69ef (diff) | |
| download | samba-1d0815281e41cb1ca2cf72a3dba28a9ca75fb65d.tar.gz samba-1d0815281e41cb1ca2cf72a3dba28a9ca75fb65d.tar.bz2 samba-1d0815281e41cb1ca2cf72a3dba28a9ca75fb65d.zip | |
s4 upgradeprovision: add dns_update_list if missing
Diffstat (limited to 'source4')
| -rwxr-xr-x | source4/scripting/bin/upgradeprovision | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/source4/scripting/bin/upgradeprovision b/source4/scripting/bin/upgradeprovision index 90586ded64..2bae4b9c23 100755 --- a/source4/scripting/bin/upgradeprovision +++ b/source4/scripting/bin/upgradeprovision @@ -197,6 +197,7 @@ def check_for_DNS(refprivate, private):                      provision"""      spnfile = "%s/spn_update_list" % private +    dnsfile = "%s/dns_update_list" % private      namedfile = lp.get("dnsupdate:path")      if not namedfile: @@ -205,6 +206,9 @@ def check_for_DNS(refprivate, private):      if not os.path.exists(spnfile):          shutil.copy("%s/spn_update_list" % refprivate, "%s" % spnfile) +    if not os.path.exists(dnsfile): +        shutil.copy("%s/dns_update_list" % refprivate, "%s" % dnsfile) +      destdir = "%s/new_dns" % private      dnsdir = "%s/dns" % private | 
