X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/92089d8842643d8cb8f1541e0908c978894326bd..4591e9c10c162e8e1eb62657a188778aa614d8fb:/pymind diff --git a/pymind b/pymind index 488b34e..3014539 100755 --- a/pymind +++ b/pymind @@ -30,5 +30,13 @@ def build_root(config): setattr(root, name, service.get_service(config)) return root +# FIXME +try: + f = file("/proc/sys/net/ipv4/ip_forward","w") + f.write("1") + f.close() +except (IOError, OSError), e: + log.warning("Can't set ip_forward: %s", e) + PyminDaemon(build_root(config), config.bind_addr).run()