aboutsummaryrefslogtreecommitdiffstats
path: root/config.py
blob: 736f150e0c45579a311da4f3aaf0470b76099058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

CONFIG = {}

# The origin of the zone file
CONFIG['origin'] = 'example.org'

# The zone file itself
CONFIG['zonefile'] = './example.org.zone'

# Name of the reasource record to update
CONFIG['host'] = 'foo'

# Should return the external IP address of the current host
CONFIG['lookup_url'] = 'http://ipv4.example.org/'