X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/5a0b7aa969cfabb1d087088975cf013d4d446180..07d6251c69d26b80b47ff012c3e44b7e4a366df4:/config.py diff --git a/config.py b/config.py index e16262d..aae79c1 100644 --- a/config.py +++ b/config.py @@ -19,6 +19,15 @@ config_path = join(base_path, 'config') 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'))