]> git.llucax.com Git - software/pymin.git/blobdiff - config.py
Fix a typo in a log message format in VrrpHandler (closes #26).
[software/pymin.git] / config.py
index 7b902a13243c3faa8109557826c28a1ab354e102..aae79c185fa02ae0783d5e5828de3d46bc29f95c 100644 (file)
--- a/config.py
+++ b/config.py
@@ -4,7 +4,7 @@
 import logging
 logging.basicConfig(
         level   = logging.DEBUG,
 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',
 )
 
         datefmt = '%a, %d %b %Y %H:%M:%S',
 )
 
@@ -19,6 +19,15 @@ config_path = join(base_path, 'config')
 
 class Root(Handler):
 
 
 class Root(Handler):
 
+    def __init__(self):
+        try:
+            f = file("/proc/sys/net/ipv4/ip_forward","w")
+            f.write("1")
+            f.close()
+        except (IOError, OSError), e:
+            print "Can't set ip_forward:", e
+        #self.ip.device_up_hook(self.dns)
+
     firewall = FirewallHandler(
         pickle_dir = join(pickle_path, 'firewall'),
         config_dir = join(config_path, 'firewall'))
     firewall = FirewallHandler(
         pickle_dir = join(pickle_path, 'firewall'),
         config_dir = join(config_path, 'firewall'))