From 4bbc3ff037026c72f3249f59c1b5af69a6ad6d69 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 29 Mar 2010 16:08:11 +0200 Subject: s4-python: Move dnspython to lib/, like the other Python modules This also avoids it from being installed if it's already present on the system. --- source4/scripting/bin/samba_dnsupdate | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'source4/scripting/bin') diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate index 4d54ab4f4c..fab112e2bd 100755 --- a/source4/scripting/bin/samba_dnsupdate +++ b/source4/scripting/bin/samba_dnsupdate @@ -18,7 +18,6 @@ # along with this program. If not, see . -import getopt import os import fcntl import sys @@ -33,15 +32,14 @@ sys.path.insert(0, "bin/python") import samba import optparse -from samba import getopt as options, Ldb -from ldb import SCOPE_SUBTREE, SCOPE_BASE, LdbError -import ldb +from samba import getopt as options +from ldb import SCOPE_BASE from samba import glue from samba.auth import system_session from samba.samdb import SamDB import samba.external -resolver = samba.external.samba_external_dns_resolver() +resolver = samba.external.dns_resolver() default_ttl = 900 -- cgit