From 17fe5e0ca4fb46ffe344aa93e97d948ec82acf37 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 7 Apr 2011 16:02:44 +1000 Subject: s4-samba_dnsupate Fix syntax error This particular sub-part of the script isn't tested in 'make test' due to it making real changes to DNS. Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Thu Apr 7 08:51:11 CEST 2011 on sn-devel-104 --- source4/scripting/bin/samba_dnsupdate | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate index 695bed6e80..e86fba2983 100755 --- a/source4/scripting/bin/samba_dnsupdate +++ b/source4/scripting/bin/samba_dnsupdate @@ -259,20 +259,19 @@ def call_nsupdate(d): f.write("send\n") f.close() + global error_count os.environ["KRB5CCNAME"] = ccachename try: cmd = nsupdate_cmd[:] cmd.append(tmpfile) ret = subprocess.call(cmd, shell=False) if ret != 0: - global error_count if opts.fail_immediately: sys.exit(1) error_count = error_count + 1 if opts.verbose: print("Failed nsupdate: %d" % ret) except Exception, estr: - global error_count if opts.fail_immediately: sys.exit(1) error_count = error_count + 1 -- cgit