]> git.llucax.com Git - software/pymin.git/blobdiff - config.py
Merge branch 'master' of git.llucax.com.ar:/var/lib/git/software/pymin into logging
[software/pymin.git] / config.py
index 3ff98c687a8c2a99eb8e16cf7508beb49b698e84..7a9b60452ddeb6cef41be1a2c78e9a6b5121d8d5 100644 (file)
--- a/config.py
+++ b/config.py
@@ -1,5 +1,13 @@
 # vim: set et sts=4 sw=4 encoding=utf-8 :
 
+# First of all, we need to setup the logging framework
+import logging
+logging.basicConfig(
+        level   = logging.DEBUG,
+        format  = '%(asctime)s %(name)-24s %(levelname)-8s %(message)s',
+        datefmt = '%a, %d %b %Y %H:%M:%S',
+)
+
 from pymin.services import *
 from pymin.dispatcher import Handler
 from os.path import join
@@ -11,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'))