From 1d0815281e41cb1ca2cf72a3dba28a9ca75fb65d Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sat, 14 Aug 2010 20:44:35 +0400 Subject: s4 upgradeprovision: add dns_update_list if missing --- source4/scripting/bin/upgradeprovision | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit