aboutsummaryrefslogtreecommitdiffstats
path: root/config.py
blob: 174883563975f178b725194dcaadb1c40183c575 (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 resource record to update
CONFIG['host'] = 'foo'

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