]> git.llucax.com Git - software/pymin.git/blobdiff - config.py
Move handler decorator help checking to avoid an extra level in the stack trace.
[software/pymin.git] / config.py
index 7b902a13243c3faa8109557826c28a1ab354e102..7a9b60452ddeb6cef41be1a2c78e9a6b5121d8d5 100644 (file)
--- 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'))