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. --- .../samba_external/dnspython/examples/ddns.py | 51 ---------------------- .../samba_external/dnspython/examples/e164.py | 6 --- .../python/samba_external/dnspython/examples/mx.py | 7 --- .../samba_external/dnspython/examples/name.py | 13 ------ .../samba_external/dnspython/examples/reverse.py | 40 ----------------- .../dnspython/examples/reverse_name.py | 6 --- .../samba_external/dnspython/examples/xfr.py | 10 ----- 7 files changed, 133 deletions(-) delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/ddns.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/e164.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/mx.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/name.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/reverse.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/reverse_name.py delete mode 100755 source4/scripting/python/samba_external/dnspython/examples/xfr.py (limited to 'source4/scripting/python/samba_external/dnspython/examples') diff --git a/source4/scripting/python/samba_external/dnspython/examples/ddns.py b/source4/scripting/python/samba_external/dnspython/examples/ddns.py deleted file mode 100755 index 84814b73cf..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/ddns.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env python - -# -# Use a TSIG-signed DDNS update to update our hostname-to-address -# mapping. -# -# usage: ddns.py -# -# On linux systems, you can automatically update your DNS any time an -# interface comes up by adding an ifup-local script that invokes this -# python code. -# -# E.g. on my systems I have this -# -# #!/bin/sh -# -# DEVICE=$1 -# -# if [ "X${DEVICE}" == "Xeth0" ]; then -# IPADDR=`LANG= LC_ALL= ifconfig ${DEVICE} | grep 'inet addr' | -# awk -F: '{ print $2 } ' | awk '{ print $1 }'` -# /usr/local/sbin/ddns.py $IPADDR -# fi -# -# in /etc/ifup-local. -# - -import sys - -import dns.update -import dns.query -import dns.tsigkeyring - -# -# Replace the keyname and secret with appropriate values for your -# configuration. -# -keyring = dns.tsigkeyring.from_text({ - 'keyname.' : 'NjHwPsMKjdN++dOfE5iAiQ==' - }) - -# -# Replace "example." with your domain, and "host" with your hostname. -# -update = dns.update.Update('example.', keyring=keyring) -update.replace('host', 300, 'A', sys.argv[1]) - -# -# Replace "10.0.0.1" with the IP address of your master server. -# -response = dns.query.tcp(update, '10.0.0.1', timeout=10) diff --git a/source4/scripting/python/samba_external/dnspython/examples/e164.py b/source4/scripting/python/samba_external/dnspython/examples/e164.py deleted file mode 100755 index ad40ccf84b..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/e164.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python - -import dns.e164 -n = dns.e164.from_e164("+1 555 1212") -print n -print dns.e164.to_e164(n) diff --git a/source4/scripting/python/samba_external/dnspython/examples/mx.py b/source4/scripting/python/samba_external/dnspython/examples/mx.py deleted file mode 100755 index 3036e70ddf..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/mx.py +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env python - -import dns.resolver - -answers = dns.resolver.query('nominum.com', 'MX') -for rdata in answers: - print 'Host', rdata.exchange, 'has preference', rdata.preference diff --git a/source4/scripting/python/samba_external/dnspython/examples/name.py b/source4/scripting/python/samba_external/dnspython/examples/name.py deleted file mode 100755 index b099c49d16..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/name.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python - -import dns.name - -n = dns.name.from_text('www.dnspython.org') -o = dns.name.from_text('dnspython.org') -print n.is_subdomain(o) # True -print n.is_superdomain(o) # False -print n > o # True -rel = n.relativize(o) # rel is the relative name www -n2 = rel + o -print n2 == n # True -print n.labels # ['www', 'dnspython', 'org', ''] diff --git a/source4/scripting/python/samba_external/dnspython/examples/reverse.py b/source4/scripting/python/samba_external/dnspython/examples/reverse.py deleted file mode 100755 index 8657baed44..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/reverse.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python - -# Usage: reverse.py ... -# -# This demo script will load in all of the zones specified by the -# filenames on the command line, find all the A RRs in them, and -# construct a reverse mapping table that maps each IP address used to -# the list of names mapping to that address. The table is then sorted -# nicely and printed. -# -# Note! The zone name is taken from the basename of the filename, so -# you must use filenames like "/wherever/you/like/dnspython.org" and -# not something like "/wherever/you/like/foo.db" (unless you're -# working with the ".db" GTLD, of course :)). -# -# If this weren't a demo script, there'd be a way of specifying the -# origin for each zone instead of constructing it from the filename. - -import dns.zone -import dns.ipv4 -import os.path -import sys - -reverse_map = {} - -for filename in sys.argv[1:]: - zone = dns.zone.from_file(filename, os.path.basename(filename), - relativize=False) - for (name, ttl, rdata) in zone.iterate_rdatas('A'): - try: - reverse_map[rdata.address].append(name.to_text()) - except KeyError: - reverse_map[rdata.address] = [name.to_text()] - -keys = reverse_map.keys() -keys.sort(lambda a1, a2: cmp(dns.ipv4.inet_aton(a1), dns.ipv4.inet_aton(a2))) -for k in keys: - v = reverse_map[k] - v.sort() - print k, v diff --git a/source4/scripting/python/samba_external/dnspython/examples/reverse_name.py b/source4/scripting/python/samba_external/dnspython/examples/reverse_name.py deleted file mode 100755 index 351896b015..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/reverse_name.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python - -import dns.reversename -n = dns.reversename.from_address("127.0.0.1") -print n -print dns.reversename.to_address(n) diff --git a/source4/scripting/python/samba_external/dnspython/examples/xfr.py b/source4/scripting/python/samba_external/dnspython/examples/xfr.py deleted file mode 100755 index 5cd6f55c06..0000000000 --- a/source4/scripting/python/samba_external/dnspython/examples/xfr.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python - -import dns.query -import dns.zone - -z = dns.zone.from_xfr(dns.query.xfr('204.152.189.147', 'dnspython.org')) -names = z.nodes.keys() -names.sort() -for n in names: - print z[n].to_text(n) -- cgit