X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/38f135c4d6e47813cf72127619c18538ce17dbe3..2f68311579c5a7179c2e6d2202034a1e7d8fff2a:/config.py diff --git a/config.py b/config.py index a0b5498..aae79c1 100644 --- 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 @@ -12,9 +20,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() + 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(