]> git.llucax.com Git - software/pymin.git/blob - config.py
Se Agrega la estructura del DNS
[software/pymin.git] / config.py
1 # vim: set et sts=4 sw=4 encoding=utf-8 :
2
3 from services import *
4 from dispatcher import handler
5
6 # XXX for testing only
7 @handler
8 def test_func(*args):
9     print 'func:', args
10
11 routes = dict \
12 (
13     test = test_func,
14     dhcp = DhcpHandler(
15         pickle_dir = 'var/lib/pymin/pickle/dhcp',
16         config_dir = 'var/lib/pymin/config/dhcp',
17     ),
18 )
19
20 bind_addr = \
21 (
22     '',   # Bind IP ('' is ANY)
23     9999, # Port
24 )
25