X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/56f982477e38e970c294e244faa925526313f9d9..0f47546178ff84527aeba43e56af035d4879c9c6:/config.py?ds=inline diff --git a/config.py b/config.py index 7b902a1..7a9b604 100644 --- a/config.py +++ b/config.py @@ -4,7 +4,7 @@ import logging logging.basicConfig( level = logging.DEBUG, - format = '%(asctime)s %(name)-12s %(levelname)-8s %(message)s', + format = '%(asctime)s %(name)-24s %(levelname)-8s %(message)s', datefmt = '%a, %d %b %Y %H:%M:%S', ) @@ -19,6 +19,12 @@ config_path = join(base_path, 'config') class Root(Handler): + def __init__(self): + f = file("/proc/sys/net/ipv4/ip_forward","w") + f.write("1") + f.close() + #self.ip.device_up_hook(self.dns) + firewall = FirewallHandler( pickle_dir = join(pickle_path, 'firewall'), config_dir = join(config_path, 'firewall'))